From d691590bfea2a7b3af004f7b880b51a9965d1306 Mon Sep 17 00:00:00 2001 From: liyuan <84758614+nvliyuan@users.noreply.github.com> Date: Tue, 26 Sep 2023 09:05:01 +0800 Subject: [PATCH] Update examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md Co-authored-by: Jason Lowe --- examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md index 9563f6f47..2c982c09e 100644 --- a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md +++ b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md @@ -2,8 +2,8 @@ This project contains sample implementations of RAPIDS accelerated user-defined functions. The ideal solution would be to replace the UDF with a series of DataFrame or SQL operations. If that is not possible, we also provide a [UDF compiler extension](https://nvidia.github.io/spark-rapids/docs/additional-functionality/udf-to-catalyst-expressions.html) -to translate UDFs to Catalyst expressions. The extension is limited to only support compiling simple operations, For complitcated cases, you can choose to implement -a RAPIDS Accelerated UDF. +to translate UDFs to Catalyst expressions. The extension is limited to only support compiling simple operations. +For complicated cases, you can choose to implement a RAPIDS Accelerated UDF. ## Spark Scala UDF Examples This is the best and simplest demo for us to getting started. From the code you can see there is an original CPU implementation