Skip to content

Commit 468ce77

Browse files
authored
Don't fail on cuda.core.experimental deprecation warnings (#7629)
Stopgap until NVIDIA/numba-cuda#676 is in. Authors: - Jim Crist-Harif (https://github.com/jcrist) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) - Bradley Dice (https://github.com/bdice) URL: #7629
1 parent 7bb51db commit 468ce77

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

python/cuml/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ filterwarnings = [
6464
"ignore:Estimator .* does not inherit from.*:UserWarning",
6565
# From numba - GPU under-utilization warnings in tests with small data
6666
"ignore::numba.core.errors.NumbaPerformanceWarning",
67+
# numba-cuda makes use of deprecated cuda.core.experimental apis
68+
"ignore:The cuda.core.experimental namespace is deprecated:DeprecationWarning",
6769
# Allow informational benchmark warnings (pytest-benchmark plugin)
6870
"default::pytest_benchmark.logger.PytestBenchmarkWarning",
6971
]

0 commit comments

Comments
 (0)