Skip to content

Update to v7.0.2 #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ["3.8", "3.9", "3.10"]
source: ["conda-forge"]
# source: ["source"]
graphblas-version: ["7.0.1"]
graphblas-version: ["7.0.2"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion suitesparse_graphblas/suitesparse_graphblas.h
Original file line number Diff line number Diff line change
Expand Up @@ -3064,7 +3064,7 @@ extern GrB_Info GB_BinaryOp_new(GrB_BinaryOp *binaryop, GxB_binary_function func
/* iterator */
extern GrB_Info GB_Iterator_rc_bitmap_next(GxB_Iterator iterator);
extern GrB_Info GB_Iterator_rc_seek(GxB_Iterator iterator, GrB_Index j, bool jth_vector);
extern GrB_Info GB_Vector_Iterator_bitmap_seek(GxB_Iterator iterator, GrB_Index p);
extern GrB_Info GB_Vector_Iterator_bitmap_seek(GxB_Iterator iterator, GrB_Index unused);

/* matrix */
extern GrB_Info GB_Iterator_attach(GxB_Iterator iterator, GrB_Matrix A, GxB_Format_Value format, GrB_Descriptor desc);
Expand Down
2 changes: 1 addition & 1 deletion suitesparse_graphblas/suitesparse_graphblas_no_complex.h
Original file line number Diff line number Diff line change
Expand Up @@ -2890,7 +2890,7 @@ extern GrB_Info GB_BinaryOp_new(GrB_BinaryOp *binaryop, GxB_binary_function func
/* iterator */
extern GrB_Info GB_Iterator_rc_bitmap_next(GxB_Iterator iterator);
extern GrB_Info GB_Iterator_rc_seek(GxB_Iterator iterator, GrB_Index j, bool jth_vector);
extern GrB_Info GB_Vector_Iterator_bitmap_seek(GxB_Iterator iterator, GrB_Index p);
extern GrB_Info GB_Vector_Iterator_bitmap_seek(GxB_Iterator iterator, GrB_Index unused);

/* matrix */
extern GrB_Info GB_Iterator_attach(GxB_Iterator iterator, GrB_Matrix A, GxB_Format_Value format, GrB_Descriptor desc);
Expand Down