2

I am reading a file using file=pd.read_csv('file_1.csv')

which is taking a long time on CPU.

Is there any method to read this using GPU.

Harkamal
  • 496
  • 3
  • 12

1 Answers1

3

No. The biggest bottleneck is IO and that’s handled by the CPU.

Mateusz Dymczyk
  • 14,969
  • 10
  • 59
  • 94
  • What is the maximum data size that a panda dataframe can read ? – Anshul Gupta Jun 07 '18 at 17:23
  • @AnshulGupta That should be a new question, but don't do that, as it is easy to google for. (The answer appears to be: as much as you have RAM for, assuming it is 64-bit python.) – Darren Cook Jun 07 '18 at 17:38