I am trying to read 12 GB CSV file.
If I am trying to read with CUDF it is giving a memory error
MemoryError: std::bad_alloc: CUDA error at: /usr/local/envs/bsql/include/rmm/mr/device/cuda_memory_resource.hpp:69: cudaErrorMemoryAllocation out of memory
But when I try to read with dask_cudf with LocalCUDACluster
it is not giving any memory issue.
My question is if both are using a single GPU then why one is having a memory issues and other is not?