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

feat(cuda): Add support for cuda 12 so as to not conflict with users workflows #847

Merged
merged 10 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion dataquality/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
dataquality.get_insights()
"""

__version__ = "2.0.2"
__version__ = "2.1.0"

import sys
from typing import Any, List, Optional
Expand Down
6 changes: 4 additions & 2 deletions dataquality/loggers/data_logger/base_data_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,10 @@ def upload(
print(
"CuML libraries not found, running standard process. "
"For faster Galileo processing, consider installing\n"
"`pip install 'dataquality[cuda]' --extra-index-url="
"https://pypi.nvidia.com/`"
"`pip install 'dataquality[cuda11]' --extra-index-url="
"https://pypi.nvidia.com/` or `pip install '"
"dataquality[cuda12]' --extra-index-url="
"https://pypi.nvidia.com/` depending on your CUDA version."
)

for split in Split.get_valid_attributes():
Expand Down
Loading
Loading