We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d25f4c commit 7c3451fCopy full SHA for 7c3451f
GB_VERSION.txt
@@ -1 +1 @@
1
-9.3.1
+9.4.2
suitesparse_graphblas/__init__.py
@@ -172,6 +172,7 @@ def libget(name):
172
lib.GrB_NOT_IMPLEMENTED: ex.NotImplementedException,
173
# GxB Errors
174
lib.GxB_EXHAUSTED: StopIteration,
175
+ lib.GxB_JIT_ERROR: ex.JitError,
176
}
177
GrB_SUCCESS = lib.GrB_SUCCESS
178
GrB_NO_VALUE = lib.GrB_NO_VALUE
suitesparse_graphblas/exceptions.py
@@ -60,3 +60,7 @@ class Panic(GraphBLASException):
60
61
class NotImplementedException(GraphBLASException):
62
pass
63
+
64
65
+class JitError(GraphBLASException):
66
+ pass
0 commit comments