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

[DO NOT REVIEW] CI Test only 20250113 [skip ci] #2757

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .github/workflows/signoff-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2024, NVIDIA CORPORATION.
# Copyright (c) 2022-2025, NVIDIA CORPORATION.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -30,3 +30,4 @@ jobs:
repo: spark-rapids-jni
pull_number: ${{ github.event.number }}
token: ${{ secrets.GITHUB_TOKEN }}

1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
path = thirdparty/cudf
url = https://github.com/rapidsai/cudf.git
branch = branch-25.02

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
This repository contains native support code for the
[RAPIDS Accelerator for Apache Spark](https://github.com/NVIDIA/spark-rapids).


## Building From Source

See the [build instructions in the contributing guide](CONTRIBUTING.md#building-from-source).

3 changes: 2 additions & 1 deletion ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2022-2024, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2022-2025, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -73,3 +73,4 @@ RUN cd /usr/local && wget --quiet https://archives.boost.io/release/1.79.0/sourc

# disable cuda container constraints to allow running w/ elder drivers on data-center GPUs
ENV NVIDIA_DISABLE_REQUIRE="true"

3 changes: 2 additions & 1 deletion ci/Jenkinsfile.premerge
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/local/env groovy
/*
* Copyright (c) 2022-2024, NVIDIA CORPORATION.
* Copyright (c) 2022-2025, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -288,3 +288,4 @@ void abortDupBuilds() {
prevBuild = prevBuild.getPreviousBuildInProgress()
}
}

3 changes: 2 additions & 1 deletion ci/check-cuda-dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2024-2025, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -33,3 +33,4 @@ find "$tmp_path" -type f -name "*.so" | while read -r so_file; do
echo "No dynamic link to CUDA Runtime found in $so_file"
fi
done

3 changes: 2 additions & 1 deletion ci/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (c) 2022-2024, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2022-2025, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -100,3 +100,4 @@ $DEPLOY_CMD -Dfile=$FPATH.jar \
-Dfiles=$CLASS_FILES \
-Dtypes=$CLASS_TYPES \
-Dclassifiers=$CLASSIFIERS

2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
</description>
<url>http://github.com/NVIDIA/spark-rapids-jni</url>


<licenses>
<license>
<name>Apache License, Version 2.0</name>
Expand All @@ -39,6 +40,7 @@
</licenses>
<scm>
<connection>scm:git:https://github.com/NVIDIA/spark-rapids-jni.git</connection>

<developerConnection>scm:git:[email protected]:NVIDIA/spark-rapids-jni.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/NVIDIA/spark-rapids-jni</url>
Expand Down
1 change: 1 addition & 0 deletions src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ option(BUILD_BENCHMARKS "Configure CMake to build (google) benchmarks" OFF)
option(BUILD_FAULTINJ "Configure CMake to build fault injection" ON)
option(BUILD_PROFILER "Configure CMake to build profiler" ON)


message(
VERBOSE "SPARK_RAPIDS_JNI: Build with per-thread default stream:
${CUDF_USE_PER_THREAD_DEFAULT_STREAM}"
Expand Down
3 changes: 2 additions & 1 deletion src/main/cpp/src/bloom_filter.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2023-2024, NVIDIA CORPORATION.
* Copyright (c) 2023-2025, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -33,6 +33,7 @@ struct bloom_filter_header {
};
constexpr int bloom_filter_header_size = sizeof(bloom_filter_header);


/**
* @brief Create an empty bloom filter of the specified size in (64 bit) longs with using
* the specified number of hashes to be used when operating on the filter.
Expand Down
3 changes: 2 additions & 1 deletion src/main/cpp/src/cast_string.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2022-2024, NVIDIA CORPORATION.
* Copyright (c) 2022-2025, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -68,6 +68,7 @@ constexpr T __device__ generic_abs(T value)
return value;
}


/**
* @brief Determine if overflow will occur when multiplying a value by 10.
*
Expand Down
Loading