Skip to content

Commit

Permalink
Update graphblas version
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaMuravjov committed May 21, 2024
1 parent 061f3c6 commit 36f2dfc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ pytest==8.0.1
pytest-benchmark
pytest-cov
cfpq_data==1.0.2
suitesparse-graphblas==7.4.4.0
python-graphblas==2023.7.0
suitesparse-graphblas==8.2.1.0
python-graphblas==2024.2.0
pandas==2.0.3
numpy==1.23.5
psutil==5.9.8
Expand Down
7 changes: 4 additions & 3 deletions test/AllPaths/conftest.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import pytest

from src.problems.AllPaths.algo.tensor.tensor import TensorSimpleAlgo, TensorDynamicAlgo


@pytest.fixture(params=[TensorSimpleAlgo, TensorDynamicAlgo])
# If you use SuiteSparse:GraphBLAS 7, you can add `params=[TensorSimpleAlgo, TensorDynamicAlgo],
# but for these legacy implementations can't be used with SuiteSparse:GraphBLAS 8,
# which we now use by default.
@pytest.fixture(params=[])
def algo(request):
return request.param
7 changes: 4 additions & 3 deletions test/ShortestPath/conftest.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import pytest

from src.problems.SinglePath.algo.matrix_shortest_path.matrix_shortest_path_index import MatrixShortestAlgo


@pytest.fixture(params=[MatrixShortestAlgo])
# If you use SuiteSparse:GraphBLAS 7, you can add `params=[MatrixShortestAlgo],
# but for this legacy implementation can't be used with SuiteSparse:GraphBLAS 8,
# which we now use by default.
@pytest.fixture(params=[])
def algo(request):
return request.param

0 comments on commit 36f2dfc

Please sign in to comment.