Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update merlin.core.compat to use HAS_GPU and add add'l libraries #262

Merged
merged 1 commit into from
Mar 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 29 additions & 13 deletions merlin/core/compat.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2022, NVIDIA CORPORATION.
# Copyright (c) 2023, NVIDIA CORPORATION.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -17,11 +17,6 @@
# pylint: disable=unused-import
import os

try:
from numba import cuda
except ImportError:
cuda = None

from dask.distributed.diagnostics import nvml


Expand Down Expand Up @@ -50,21 +45,42 @@ def _get_gpu_count():

HAS_GPU = _get_gpu_count() > 0

if HAS_GPU:
try:
from numba import cuda
except ImportError:
cuda = None

try:
import cudf
except ImportError:
cudf = None

try:
import cupy
except ImportError:
cupy = None

try:
import dask_cudf
except ImportError:
dask_cudf = None

else:
cuda = None
cudf = None
cupy = None
dask_cudf = None

try:
import numpy
except ImportError:
numpy = None

try:
import cupy
import pandas
except ImportError:
cupy = None

try:
import cudf
except ImportError:
cudf = None
pandas = None

try:
import tensorflow
Expand Down