GALI PREM SAGAR

Results 132 comments of GALI PREM SAGAR

@vuule Did you intended to the same pyarrow parquet schema? Like: ```python (Pdb) x = pq.ParquetFile(fname) (Pdb) x.metadata created_by: parquet-cpp-arrow version 8.0.0 num_columns: 15 num_rows: 0 num_row_groups: 1 format_version: 1.0...

Yea, should not be an issue since we already tap into this API anyways: https://github.com/rapidsai/cudf/blob/branch-22.08/python/cudf/cudf/io/parquet.py#L199

@pp850110 Can you share the output of `conda list` in the environment you are seeing this error?

@pp850110 Could you share the output of `ldconfig -p | grep libcuda.so`

Interesting, can you print your `$LD_LIBRARY_PATH`? and also output of: ``` sudo find /usr/ -name 'libcuda.so.*' ```

Could you share the outputs of the following: ``` ls -al /lib64/libcuda.so.1 ls -al /lib/libcuda.so.1 ls -al /lib64/libcuda.so ls -al /lib/libcuda.so ```

What do the following environment variables have?: ``` CUDA_PATH LD_LIBRARY_PATH PATH CUDA_HOME ```

Looks like your environment might be missing paths to libcuda.so, can you try setting these environment variables: ```bash export CUDA_PATH=/usr/local/cuda export LD_LIBRARY_PATH=$CUDA_PATH/lib64:$LD_LIBRARY_PATH export CUDA_HOME=/usr/local/cuda export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64:/usr/local/cuda/extras/CUPTI/lib64 export PATH=$PATH:$CUDA_HOME/bin ``` All...