Skip to content

Commit 18af218

Browse files
committed
Fix up imports
1 parent 36edba7 commit 18af218

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cuda_bindings/cuda/bindings/_lib/utils.pxi.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ from libc.stdlib cimport calloc, free
66
from libc.stdint cimport int32_t, uint32_t, int64_t, uint64_t
77
from libc.stddef cimport wchar_t
88
from libc.string cimport memcpy
9-
from cuda.bindings.utils._fast_enum import FastEnum as _FastEnum
9+
from cuda.bindings._internal._fast_enum import FastEnum as _FastEnum
1010
import ctypes as _ctypes
1111
cimport cuda.bindings.cydriver as cydriver
1212
cimport cuda.bindings._lib.param_packer as param_packer

cuda_bindings/tests/test_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import sys
66

77
import pytest
8-
from cuda.bindings.utils import _fast_enum
8+
from cuda.bindings._internal import _fast_enum
99

1010
# Test both with the FastEnum implementation and the stdlib enum.IntEnum (even
1111
# though we don't use the latter) to make sure that the two APIs are identical

0 commit comments

Comments
 (0)