Skip to content

Commit

Permalink
Merge branch 'fix-pytest-np121' of github.com:dantegd/cuml into fix/r…
Browse files Browse the repository at this point in the history
…aft-knn-changes
  • Loading branch information
trxcllnt committed Jun 24, 2021
2 parents 1799349 + fc20d8a commit fd209b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cuml/test/test_dbscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_dbscan_precomputed(datatype, nrows, max_mbytes_per_batch, out_dtype):

# Precompute distances
Xc = np.array([[complex(p[0], p[1]) for p in X]])
X_dist = np.abs(Xc - Xc.T, dtype=datatype)
X_dist = np.abs(Xc - Xc.T).astype(datatype)

eps = 1
cuml_dbscan = cuDBSCAN(eps=eps, min_samples=2, metric='precomputed',
Expand Down

0 comments on commit fd209b7

Please sign in to comment.