Skip to content

Commit

Permalink
FIX Remove not used import
Browse files Browse the repository at this point in the history
  • Loading branch information
dantegd committed Jul 11, 2023
1 parent 1d06c86 commit 325e954
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions python/cuml/tests/test_pca.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,12 @@
from cuml import PCA as cuPCA
import pytest
from cuml.internals.safe_imports import gpu_only_import
from cuml.internals.safe_imports import gpu_only_import_from
from cuml.internals.safe_imports import cpu_only_import

np = cpu_only_import("numpy")
cp = gpu_only_import("cupy")
cupyx = gpu_only_import("cupyx")

get_runtime_version = gpu_only_import_from(
"rmm._cuda.gpu", "runtimeGetVersion"
)


@pytest.mark.parametrize("datatype", [np.float32, np.float64])
@pytest.mark.parametrize("input_type", ["ndarray"])
Expand Down

0 comments on commit 325e954

Please sign in to comment.