Skip to content

Add CUDA version check #2707

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

Closed
wants to merge 1 commit into from
Closed
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
15 changes: 15 additions & 0 deletions torchaudio/_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,19 @@ def _init_extension():
pass


def _check_cuda_version():
version = torch.ops.torchaudio.cuda_version()
if version is not None and torch.version.cuda is not None:
version_str = str(version)
ta_version = f"{version_str[:-3]}.{version_str[-2]}"
t_version = torch.version.cuda
if ta_version != t_version:
raise RuntimeError(
"Detected that PyTorch and TorchAudio were compiled with different CUDA versions. "
f"PyTorch has CUDA version {t_version} whereas TorchAudio has CUDA version {ta_version}. "
"Please install the TorchAudio version that matches your PyTorch version."
)


_init_extension()
_check_cuda_version()
13 changes: 13 additions & 0 deletions torchaudio/csrc/utils.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#include <torch/script.h>

#ifdef USE_CUDA
#include <cuda.h>
#endif

namespace torchaudio {

namespace {
Expand Down Expand Up @@ -30,12 +34,21 @@ bool is_ffmpeg_available() {
#endif
}

c10::optional<int64_t> cuda_version() {
#ifdef USE_CUDA
return CUDA_VERSION;
#else
return {};
#endif
}

} // namespace

TORCH_LIBRARY_FRAGMENT(torchaudio, m) {
m.def("torchaudio::is_sox_available", &is_sox_available);
m.def("torchaudio::is_kaldi_available", &is_kaldi_available);
m.def("torchaudio::is_ffmpeg_available", &is_ffmpeg_available);
m.def("torchaudio::cuda_version", &cuda_version);
}

} // namespace torchaudio