Skip to content

Commit

Permalink
Use cuda.bindings layout. (#588)
Browse files Browse the repository at this point in the history
This PR updates cuVS to use the new cuda-python `cuda.bindings` layout. See rapidsai/build-planning#117.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Dante Gama Dessavre (https://github.com/dantegd)
  - https://github.com/jakirkham

URL: #588
  • Loading branch information
bdice authored Jan 22, 2025
1 parent 9b7bb97 commit d6476f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/cuvs/cuvs/common/c_api.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# cython: language_level=3


from cuda.ccudart cimport cudaStream_t
from cuda.bindings.cyruntime cimport cudaStream_t
from libc.stdint cimport uintptr_t


Expand Down
2 changes: 1 addition & 1 deletion python/cuvs/cuvs/common/resources.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import functools

from cuda.ccudart cimport cudaStream_t
from cuda.bindings.cyruntime cimport cudaStream_t

from cuvs.common.c_api cimport (
cuvsResources_t,
Expand Down

0 comments on commit d6476f1

Please sign in to comment.