Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GpuConv operator for the conv 10<->16 expression #8925

Merged
merged 27 commits into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e7ca8b4
Implement conv on GPU
gerashegalov Jul 30, 2023
ffa2f03
Replacement rule of Conv
gerashegalov Jul 31, 2023
e155ed9
wip
gerashegalov Aug 3, 2023
ae58d32
Output only unified diff when GPU output deviates
gerashegalov Aug 3, 2023
22df461
format
gerashegalov Aug 3, 2023
2eedc3a
wip
gerashegalov Aug 3, 2023
ad034fc
Merge remote-tracking branch 'gerashegalov/unifiedDiffInAssert' into …
gerashegalov Aug 3, 2023
c1b7461
wip
gerashegalov Aug 3, 2023
73b1612
Merge branch 'branch-23.10' of https://github.com/NVIDIA/spark-rapids…
gerashegalov Aug 8, 2023
6d98293
Merge remote-tracking branch 'origin/branch-23.10' into gerashegalov/…
gerashegalov Aug 9, 2023
a080254
wip
gerashegalov Aug 9, 2023
0b24016
reviews
gerashegalov Aug 10, 2023
ea3ae7b
reviews
gerashegalov Aug 10, 2023
2e40ee1
test
gerashegalov Aug 10, 2023
9c0cb59
Merge branch 'branch-23.10' of https://github.com/NVIDIA/spark-rapids…
gerashegalov Aug 11, 2023
fbebd70
Scalar doColumnar
gerashegalov Aug 11, 2023
46cf184
happy path done
gerashegalov Aug 12, 2023
5dcf3c0
docgen
gerashegalov Aug 12, 2023
e73e241
more cases supported
gerashegalov Aug 17, 2023
d4a8862
Adjust API
gerashegalov Aug 17, 2023
24c14ed
Minor fixes
gerashegalov Aug 17, 2023
590ebb5
Merge branch 'branch-23.10' of https://github.com/NVIDIA/spark-rapids…
gerashegalov Aug 18, 2023
e44244a
different treatment of spaces in 320+
gerashegalov Aug 18, 2023
bdbd070
reviews, disabled by default
gerashegalov Aug 23, 2023
6f26335
docgen
gerashegalov Aug 23, 2023
aa3777f
removed extra line from doc
gerashegalov Aug 23, 2023
dffc30f
one line doc
gerashegalov Aug 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/additional-functionality/advanced_configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ Name | SQL Function(s) | Description | Default Value | Notes
<a name="sql.expression.Concat"></a>spark.rapids.sql.expression.Concat|`concat`|List/String concatenate|true|None|
<a name="sql.expression.ConcatWs"></a>spark.rapids.sql.expression.ConcatWs|`concat_ws`|Concatenates multiple input strings or array of strings into a single string using a given separator|true|None|
<a name="sql.expression.Contains"></a>spark.rapids.sql.expression.Contains| |Contains|true|None|
<a name="sql.expression.Conv"></a>spark.rapids.sql.expression.Conv|`conv`|Convert string representing a number from one base to another|false|This is disabled by default because GPU implementation is incomplete. We currently only support from/to_base values of 10 and 16. We fall back on CPU if the signed conversion is signalled via a negative to_base. GPU implementation does not check for an 64-bit signed/unsigned int overflow when performing the conversion to return `FFFFFFFFFFFFFFFF` or `18446744073709551615` or to throw an error in the ANSI mode. It is safe to enable if the overflow is not possible or detected externally. For instance decimal strings not longer than 18 characters / hexadecimal strings not longer than 15 characters disregarding the sign cannot cause an overflow. |
<a name="sql.expression.Cos"></a>spark.rapids.sql.expression.Cos|`cos`|Cosine|true|None|
<a name="sql.expression.Cosh"></a>spark.rapids.sql.expression.Cosh|`cosh`|Hyperbolic cosine|true|None|
<a name="sql.expression.Cot"></a>spark.rapids.sql.expression.Cot|`cot`|Cotangent|true|None|
Expand Down
Loading