Skip to content

Commit

Permalink
change tolerance for HITS test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHastings committed Nov 7, 2023
1 parent 1197d40 commit 3b9d50a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/cugraph/cugraph/tests/link_analysis/test_hits.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ def setup_function():
fixture_params = gen_fixture_params_product(
(datasets, "graph_file"),
([50], "max_iter"),
([1.0e-6], "tol"),
# FIXME: Changed this from 1.0e-6 to 1.0e-5. NX defaults to
# FLOAT64 computation, cuGraph C++ defaults to whatever the edge weight
# is, cugraph python defaults that to FLOAT32. Does not converge at
# 1e-6 for larger graphs and FLOAT32.
([1.0e-5], "tol"),
)


Expand Down

0 comments on commit 3b9d50a

Please sign in to comment.