We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1c3506 commit 7224cb2Copy full SHA for 7224cb2
sycl/source/detail/filter_selector_impl.cpp
@@ -80,6 +80,9 @@ filter create_filter(const std::string &Input) {
80
} else if (Token == "cuda" && !Result.HasBackend) {
81
Result.Backend = backend::ext_oneapi_cuda;
82
Result.HasBackend = true;
83
+ } else if (Token == "hip" && !Result.HasBackend) {
84
+ Result.Backend = backend::ext_oneapi_hip;
85
+ Result.HasBackend = true;
86
} else if (Token == "host") {
87
if (!Result.HasBackend) {
88
Result.Backend = backend::host;
0 commit comments