Skip to content
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