Skip to content

Commit d911f20

Browse files
authored
Update to v7.3.0 (#49)
* Update to v7.3.0 * Get SuiteSparse:GraphBLAS from conda-forge for CI
1 parent 1782905 commit d911f20

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
18-
# os: ["ubuntu-latest"]
19-
python-version: ["3.8", "3.9", "3.10"]
2018
source: ["conda-forge"]
19+
# os: ["ubuntu-latest"]
2120
# source: ["source"]
22-
graphblas-version: ["7.2.0"]
21+
python-version: ["3.8", "3.9", "3.10"]
22+
graphblas-version: ["7.3.0"]
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v2

suitesparse_graphblas/suitesparse_graphblas.h

+2
Original file line numberDiff line numberDiff line change
@@ -3256,7 +3256,9 @@ extern GrB_Info GxB_Matrix_unpack_HyperCSR(GrB_Matrix A, GrB_Index **Ap, GrB_Ind
32563256
extern GrB_Info GxB_Row_subassign(GrB_Matrix C, const GrB_Vector mask, const GrB_BinaryOp accum, const GrB_Vector u, GrB_Index i, const GrB_Index *J, GrB_Index nj, const GrB_Descriptor desc);
32573257
extern GrB_Info GxB_Vector_diag(GrB_Vector v, const GrB_Matrix A, int64_t k, const GrB_Descriptor desc);
32583258
extern GrB_Info GxB_colIterator_attach(GxB_Iterator iterator, GrB_Matrix A, GrB_Descriptor desc);
3259+
extern GrB_Info GxB_pack_HyperHash(GrB_Matrix A, GrB_Matrix *Y, const GrB_Descriptor desc);
32593260
extern GrB_Info GxB_rowIterator_attach(GxB_Iterator iterator, GrB_Matrix A, GrB_Descriptor desc);
3261+
extern GrB_Info GxB_unpack_HyperHash(GrB_Matrix A, GrB_Matrix *Y, const GrB_Descriptor desc);
32603262

32613263
/* monoid */
32623264
extern GrB_Info GxB_Monoid_fprint(GrB_Monoid monoid, const char *name, GxB_Print_Level pr, FILE *f);

suitesparse_graphblas/suitesparse_graphblas_no_complex.h

+2
Original file line numberDiff line numberDiff line change
@@ -3054,7 +3054,9 @@ extern GrB_Info GxB_Matrix_unpack_HyperCSR(GrB_Matrix A, GrB_Index **Ap, GrB_Ind
30543054
extern GrB_Info GxB_Row_subassign(GrB_Matrix C, const GrB_Vector mask, const GrB_BinaryOp accum, const GrB_Vector u, GrB_Index i, const GrB_Index *J, GrB_Index nj, const GrB_Descriptor desc);
30553055
extern GrB_Info GxB_Vector_diag(GrB_Vector v, const GrB_Matrix A, int64_t k, const GrB_Descriptor desc);
30563056
extern GrB_Info GxB_colIterator_attach(GxB_Iterator iterator, GrB_Matrix A, GrB_Descriptor desc);
3057+
extern GrB_Info GxB_pack_HyperHash(GrB_Matrix A, GrB_Matrix *Y, const GrB_Descriptor desc);
30573058
extern GrB_Info GxB_rowIterator_attach(GxB_Iterator iterator, GrB_Matrix A, GrB_Descriptor desc);
3059+
extern GrB_Info GxB_unpack_HyperHash(GrB_Matrix A, GrB_Matrix *Y, const GrB_Descriptor desc);
30583060

30593061
/* monoid */
30603062
extern GrB_Info GxB_Monoid_fprint(GrB_Monoid monoid, const char *name, GxB_Print_Level pr, FILE *f);

0 commit comments

Comments
 (0)