File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -114,11 +114,13 @@ class AdapterRegistry {
114
114
// to load the adapter.
115
115
std::vector<std::vector<fs::path>> adaptersLoadPaths;
116
116
117
- static constexpr std::array<const char *, 4 > knownAdapterNames{
117
+ static constexpr std::array<const char *, 5 > knownAdapterNames{
118
118
MAKE_LIBRARY_NAME (" ur_adapter_level_zero" , " 0" ),
119
- MAKE_LIBRARY_NAME (" ur_adapter_hip" , " 0" ),
120
119
MAKE_LIBRARY_NAME (" ur_adapter_opencl" , " 0" ),
121
- MAKE_LIBRARY_NAME (" ur_adapter_cuda" , " 0" )};
120
+ MAKE_LIBRARY_NAME (" ur_adapter_cuda" , " 0" ),
121
+ MAKE_LIBRARY_NAME (" ur_adapter_hip" , " 0" ),
122
+ MAKE_LIBRARY_NAME (" ur_adapter_native_cpu" , " 0" ),
123
+ };
122
124
123
125
std::optional<std::vector<fs::path>> getEnvAdapterSearchPaths () {
124
126
std::optional<std::vector<std::string>> pathStringsOpt;
You can’t perform that action at this time.
0 commit comments