File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 9
9
#include < detail/config.hpp>
10
10
#include < detail/device_impl.hpp>
11
11
#include < detail/device_info.hpp>
12
- #include < detail/platform_info.hpp>
13
12
#include < sycl/backend_types.hpp>
14
13
15
14
#include < algorithm>
@@ -387,12 +386,10 @@ void applyAllowList(std::vector<ur_device_handle_t> &UrDevices,
387
386
}
388
387
// get PlatformVersion value and put it to DeviceDesc
389
388
DeviceDesc.emplace (PlatformVersionKeyName,
390
- sycl::detail::get_platform_info<info::platform::version>(
391
- UrPlatform, Adapter));
389
+ PlatformImpl.get_info <info::platform::version>());
392
390
// get PlatformName value and put it to DeviceDesc
393
391
DeviceDesc.emplace (PlatformNameKeyName,
394
- sycl::detail::get_platform_info<info::platform::name>(
395
- UrPlatform, Adapter));
392
+ PlatformImpl.get_info <info::platform::name>());
396
393
397
394
int InsertIDx = 0 ;
398
395
for (ur_device_handle_t Device : UrDevices) {
You can’t perform that action at this time.
0 commit comments