forked from rapidsai/cuml
-
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.
Replace cpdef variables with cdef variables. (rapidsai#5145)
This PR fixes some warnings in the cuml Python build that will become errors in Cython 3. Examples follow: ``` cuml/python/cuml/decomposition/pca.pyx:334:14: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/decomposition/pca.pyx:587:14: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/decomposition/pca.pyx:683:14: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/decomposition/tsvd.pyx:282:14: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/decomposition/tsvd.pyx:398:14: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/decomposition/tsvd.pyx:450:14: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/decomposition/pca_mg.pyx:94:14: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/decomposition/tsvd_mg.pyx:77:14: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/fil/fil.pyx:82:10: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables cuml/python/cuml/fil/fil.pyx:83:10: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables ``` Authors: - Bradley Dice (https://github.com/bdice) Approvers: - William Hicks (https://github.com/wphicks) - Carl Simon Adorf (https://github.com/csadorf) URL: rapidsai#5145
- Loading branch information
Showing
5 changed files
with
10 additions
and
10 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
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