Skip to content

Commit d6476f1

Browse files
authored
Use cuda.bindings layout. (#588)
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
1 parent 9b7bb97 commit d6476f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/cuvs/cuvs/common/c_api.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# cython: language_level=3
1717

1818

19-
from cuda.ccudart cimport cudaStream_t
19+
from cuda.bindings.cyruntime cimport cudaStream_t
2020
from libc.stdint cimport uintptr_t
2121

2222

python/cuvs/cuvs/common/resources.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import functools
1919

20-
from cuda.ccudart cimport cudaStream_t
20+
from cuda.bindings.cyruntime cimport cudaStream_t
2121

2222
from cuvs.common.c_api cimport (
2323
cuvsResources_t,

0 commit comments

Comments
 (0)