The Wayback Machine - https://web.archive.org/web/20210821060709/https://github.com/topics/rapids
Skip to content
#

rapids

Here are 26 public repositories matching this topic...

esnvidia
esnvidia commented Jun 15, 2021

Describe the bug
Clipping a DataFrame or Series using ints causes a cudf Failure because it won't handle the different dtypes (int and float)

Steps/Code to reproduce bug

data = cudf.Series([-0.43, 0.1234, 1.5, -1.31])
data.clip(0, 1)

...
  File "cudf/_lib/replace.pyx", line 216, in cudf._lib.replace.clip
  File "cudf/_lib/replace.pyx", line 198, in cudf._lib.replace.clamp
jlowe
jlowe commented Aug 16, 2021

Most classes are either under the com.nvidia.spark.rapids, org.apache.spark.sql.rapids, or some other Spark package prefix that ends in .rapids, but there are a few classes in the plugin that appear directly within an Apache Spark package:

  • org.apache.spark.sql.catalyst.CudfUnsafeRow
  • org.apache.spark.shuffle.RapidsShuffleExceptions.scala

Ideally these classes should be moved to an existi

randyzwitch
randyzwitch commented Mar 28, 2019

In trying to write tests for #189, I'm finding very difficult to add columns to existing tests, as in some cases like the all_types table, the table is defined in a separate file than the tests and multiple tests try to write to the same table.

Additionally, our test suite doesn't prove that the data that are uploaded are the same as the data downloaded for all types.

We should consider m

Improve this page

Add a description, image, and links to the rapids topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the rapids topic, visit your repo's landing page and select "manage topics."

Learn more