|
1 | 1 | /*
|
2 |
| - * Copyright (C) 2020-2024 Intel Corporation |
| 2 | + * Copyright (C) 2020-2025 Intel Corporation |
3 | 3 | *
|
4 | 4 | * SPDX-License-Identifier: MIT
|
5 | 5 | *
|
@@ -113,7 +113,7 @@ void populateKernelDescriptor(KernelDescriptor &dst, const SPatchDataParameterSt
|
113 | 113 |
|
114 | 114 | void populateKernelDescriptor(KernelDescriptor &dst, const SPatchKernelAttributesInfo &token) {
|
115 | 115 | constexpr ConstStringRef attributeReqdSubGroupSizeBeg = "intel_reqd_sub_group_size(";
|
116 |
| - std::string attributes = std::string(reinterpret_cast<const char *>(&token + 1), token.AttributesSize).c_str(); |
| 116 | + const auto &attributes = std::string(reinterpret_cast<const char *>(&token + 1), token.AttributesSize); |
117 | 117 | dst.kernelMetadata.kernelLanguageAttributes = attributes;
|
118 | 118 | auto it = attributes.find(attributeReqdSubGroupSizeBeg.begin());
|
119 | 119 | if (it != std::string::npos) {
|
@@ -460,7 +460,7 @@ void populateArgDescriptor(KernelDescriptor &dst, size_t argNum, const PatchToke
|
460 | 460 |
|
461 | 461 | void populateKernelDescriptor(KernelDescriptor &dst, const PatchTokenBinary::KernelFromPatchtokens &src, uint32_t gpuPointerSizeInBytes) {
|
462 | 462 | UNRECOVERABLE_IF(nullptr == src.header);
|
463 |
| - dst.kernelMetadata.kernelName = std::string(src.name.begin(), src.name.end()).c_str(); |
| 463 | + dst.kernelMetadata.kernelName = std::string(src.name.begin(), src.name.end()); |
464 | 464 | populateKernelDescriptorIfNotNull(dst, src.tokens.executionEnvironment);
|
465 | 465 | populateKernelDescriptorIfNotNull(dst, src.tokens.samplerStateArray);
|
466 | 466 | populateKernelDescriptorIfNotNull(dst, src.tokens.bindingTableState);
|
|
0 commit comments