-
Notifications
You must be signed in to change notification settings - Fork 917
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/branch-22.10' into cubinlinker…
…-mvc
- Loading branch information
Showing
205 changed files
with
11,250 additions
and
1,635 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
python/cudf/cudf/_version.py export-subst | ||
python/strings_udf/strings_udf/_version.py export-subst | ||
python/cudf_kafka/cudf_kafka/_version.py export-subst | ||
python/custreamz/custreamz/_version.py export-subst | ||
python/dask_cudf/dask_cudf/_version.py export-subst |
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
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
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
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
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,4 @@ | ||
# Copyright (c) 2022, NVIDIA CORPORATION. | ||
|
||
# This assumes the script is executed from the root of the repo directory | ||
./build.sh strings_udf |
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,14 @@ | ||
c_compiler_version: | ||
- 9 | ||
|
||
cxx_compiler_version: | ||
- 9 | ||
|
||
sysroot_version: | ||
- "2.17" | ||
|
||
cmake_version: | ||
- ">=3.20.1,!=3.23.0" | ||
|
||
cuda_compiler: | ||
- nvcc |
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,65 @@ | ||
# Copyright (c) 2022, NVIDIA CORPORATION. | ||
|
||
{% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev').lstrip('v') + environ.get('VERSION_SUFFIX', '') %} | ||
{% set minor_version = version.split('.')[0] + '.' + version.split('.')[1] %} | ||
{% set py_version=environ.get('CONDA_PY', 38) %} | ||
{% set cuda_version='.'.join(environ.get('CUDA', '11.5').split('.')[:2]) %} | ||
{% set cuda_major=cuda_version.split('.')[0] %} | ||
|
||
package: | ||
name: strings_udf | ||
version: {{ version }} | ||
|
||
source: | ||
git_url: ../../.. | ||
|
||
build: | ||
number: {{ GIT_DESCRIBE_NUMBER }} | ||
string: cuda_{{ cuda_major }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }} | ||
script_env: | ||
- VERSION_SUFFIX | ||
- PARALLEL_LEVEL | ||
# libcudf's run_exports pinning is looser than we would like | ||
ignore_run_exports: | ||
- libcudf | ||
ignore_run_exports_from: | ||
- {{ compiler('cuda') }} | ||
|
||
requirements: | ||
build: | ||
- cmake {{ cmake_version }} | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- {{ compiler('cuda') }} {{ cuda_version }} | ||
- sysroot_{{ target_platform }} {{ sysroot_version }} | ||
host: | ||
- python | ||
- cython >=0.29,<0.30 | ||
- scikit-build>=0.13.1 | ||
- setuptools | ||
- numba >=0.54 | ||
- libcudf ={{ version }} | ||
- cudf ={{ version }} | ||
- cudatoolkit ={{ cuda_version }} | ||
run: | ||
- python | ||
- typing_extensions | ||
- numba >=0.54 | ||
- numpy | ||
- libcudf ={{ version }} | ||
- cudf ={{ version }} | ||
- {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }} | ||
- cachetools | ||
- ptxcompiler # [linux64] # CUDA enhanced compatibility. See https://github.com/rapidsai/ptxcompiler | ||
test: # [linux64] | ||
requires: # [linux64] | ||
- cudatoolkit {{ cuda_version }}.* # [linux64] | ||
imports: # [linux64] | ||
- strings_udf # [linux64] | ||
|
||
about: | ||
home: https://rapids.ai/ | ||
license: Apache-2.0 | ||
license_family: APACHE | ||
license_file: LICENSE | ||
summary: strings_udf library |
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
Oops, something went wrong.