Skip to content
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

[BUG] Multi-GPU DBSCAN is broken #6110

Open
vikcost opened this issue Oct 14, 2024 · 1 comment
Open

[BUG] Multi-GPU DBSCAN is broken #6110

vikcost opened this issue Oct 14, 2024 · 1 comment
Labels
? - Needs Triage Need team to review and classify bug Something isn't working

Comments

@vikcost
Copy link

vikcost commented Oct 14, 2024

Below is a minimal version of a test script for multi-gpu DBSCAN.
I have 6 RTX 4090 on my machine that I want to utilize.

I observe memory allocations and de-allocations on my GPUs. But DBSCAN fails to return any result.

Any idea where the issue might be coming from?

import numpy as np
from cuml.dask.cluster import DBSCAN
from dask.distributed import Client
from dask_cuda import LocalCUDACluster

if __name__ == "__main__":
    cluster = LocalCUDACluster()
    client = Client(cluster)
    embs = np.random.randn(100_000, 256)
    dbscan = DBSCAN(
        client=client,
        eps=0.25,
        min_samples=5,
        metric="cosine",
    ).fit(embs)

Environment details:

  • Environment location: Bare-metal
  • Linux Distro/Architecture: Ubuntu 22.04
  • GPU Model/Driver: RTX4090 driver 550.107
  • CUDA: 12.4
  • Method of cuDF & cuML install: pip
@vikcost vikcost added ? - Needs Triage Need team to review and classify bug Something isn't working labels Oct 14, 2024
@divyegala
Copy link
Member

@vikcost can you explain what you mean by DBSCAN failing to return any result? Does that mean there is a crash or something else going on?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
? - Needs Triage Need team to review and classify bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants