forked from NVIDIA/spark-rapids
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added in support for RangeExec (NVIDIA#389)
- Loading branch information
Showing
5 changed files
with
196 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright (c) 2020, NVIDIA CORPORATION. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import pytest | ||
|
||
from asserts import assert_gpu_and_cpu_are_equal_collect | ||
from data_gen import LONG_MAX, LONG_MIN | ||
from pyspark.sql.types import * | ||
import pyspark.sql.functions as f | ||
|
||
def test_simple_range(): | ||
assert_gpu_and_cpu_are_equal_collect( | ||
lambda spark : spark.range(100)) | ||
|
||
def test_start_end_range(): | ||
assert_gpu_and_cpu_are_equal_collect( | ||
lambda spark : spark.range(-100, 100)) | ||
|
||
def test_step_range(): | ||
assert_gpu_and_cpu_are_equal_collect( | ||
lambda spark : spark.range(-100, 100, 7)) | ||
|
||
def test_neg_step_range(): | ||
assert_gpu_and_cpu_are_equal_collect( | ||
lambda spark : spark.range(100, -100, -7)) | ||
|
||
def test_partitioned_range(): | ||
assert_gpu_and_cpu_are_equal_collect( | ||
lambda spark : spark.range(1000, numPartitions=2)) | ||
|
||
def test_large_corner_range(): | ||
assert_gpu_and_cpu_are_equal_collect( | ||
lambda spark : spark.range(LONG_MAX - 100, LONG_MAX, step=3)) | ||
|
||
def test_small_corner_range(): | ||
assert_gpu_and_cpu_are_equal_collect( | ||
lambda spark : spark.range(LONG_MIN + 100, LONG_MIN, step=-3)) | ||
|
||
def test_wrong_step_corner_range(): | ||
assert_gpu_and_cpu_are_equal_collect( | ||
lambda spark : spark.range(100, -100, 7)) | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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