Closed nilanjanroy1 closed 2 years ago
Thanks for raising this issue. I hope you don't mind that I modified the issue to use text instead of the images. The issue that images can't be search in the search bar, people using screen readers to interact with their computer can't interpret them, and text makes it easier for an engineer who might be able to solve your issue to copy & paste your code into a script or notebook to test it out.
I have a couple of questions:
Hi @phobson , Thanks for checking this out. I was trying to recreate the same, but today i was able to import cudf & dask_cudf as in the below code(using the same software env build last Friday)
def test_func(): import dask_cudf import cudf
df = cudf.DataFrame({'a': list(range(2000000)),
'b': list(reversed(range(2000000))),
'c': list(range(2000000))
})
ddf = dask_cudf.from_cudf(df, npartitions=2)
ddf.to_parquet('s3://nilanjan-test/out-coiled_test/df_2000000/')
f = client.submit(test_func) f.result()
I tried the same steps today, and it ran fine. Not sure what is causing the inconsistency.
I'm not familiar with the nuances of working with GPUs in general or dask_cudf + cupy in particular, but I think you going to need to install the libraries locally.
A full traceback would be very helpful here.
@phobson sure, I will provide the full traceback if I receive the error next time. can we keep this issue for next few days, in case I encounter the same issue. Thanks in advance.
@nilanjanroy1 -- Following up on this issue. Have you encountered it again, or are you good with closing?
Hi @hayesgb , I will have the ticket closed. I haven't faced the same issue again. Thanks all for checking the issue out.
Hi Team, I have created a software environment with the required below dependencies.
The environment is getting created, but while trying the below piece of code I am getting error as cudf/ dask-cudf not found.
The sample piece which is in website is working
So, cupy got installed but cudf and dask-cudf didnt get installed. It seems there might a version mismatch and all dependencies are not getting installed. Can someone suggest what might be the issue here. Thanks in advance.