Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Jan 5, 2025
1 parent f946a3b commit 8c59c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/strucclustutils/ProstT5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ std::vector<std::string> ProstT5::getDevices() {
for (size_t i = 0; i < ggml_backend_dev_count(); ++i) {
ggml_backend_dev_t dev = ggml_backend_dev_get(i);
std::string name = ggml_backend_dev_name(dev);
std::string description = ggml_backend_dev_name(dev);
std::string description = ggml_backend_dev_description(dev);
// ignore Metal in CI
if (name == "Metal" && description.find("Paravirtual") != std::string::npos) {
continue;
Expand Down

0 comments on commit 8c59c3d

Please sign in to comment.