Skip to content

[UR] Fix usage of old backend enum. #17603

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
Closed
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
4 changes: 2 additions & 2 deletions unified-runtime/source/loader/ur_adapter_registry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace fs = filesystem;
namespace ur_loader {

struct ur_device_tuple {
ur_adapter_backend_t backend;
ur_backend_t backend;
ur_device_type_t device;
};

Expand All @@ -42,7 +42,7 @@ struct FilterTerm {
{"native_cpu", UR_BACKEND_NATIVE_CPU},
};

bool matchesBackend(const ur_adapter_backend_t &match_backend) const {
bool matchesBackend(const ur_backend_t &match_backend) const {
if (backend.front() == '*') {
return true;
}
Expand Down