Last active
December 14, 2019 02:38
-
-
Save GeorgeSeif/eb26f3fd69b7f432640c359994f888f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Operation | Pandas on CPU Time (ms) | Dask on GPU Time (ms) | Speedup | |
---|---|---|---|---|
df['price'].mean() | 2.6 | 0.3 | 8.7 | |
df['price'].max() | 2.2 | 0.2 | 11 | |
df[df['price'] > 250] | 13 | 0.7 | 18.6 | |
df + df | 163 | 2.6 | 62.7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment