Skip to content

Commit 7c3451f

Browse files
committed
update graphblas version
1 parent 6d25f4c commit 7c3451f

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

GB_VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.3.1
1+
9.4.2

suitesparse_graphblas/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ def libget(name):
172172
lib.GrB_NOT_IMPLEMENTED: ex.NotImplementedException,
173173
# GxB Errors
174174
lib.GxB_EXHAUSTED: StopIteration,
175+
lib.GxB_JIT_ERROR: ex.JitError,
175176
}
176177
GrB_SUCCESS = lib.GrB_SUCCESS
177178
GrB_NO_VALUE = lib.GrB_NO_VALUE

suitesparse_graphblas/exceptions.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,7 @@ class Panic(GraphBLASException):
6060

6161
class NotImplementedException(GraphBLASException):
6262
pass
63+
64+
65+
class JitError(GraphBLASException):
66+
pass

0 commit comments

Comments
 (0)