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 8a7fb3c commit 7b92117Copy full SHA for 7b92117
sycl/source/detail/kernel_bundle_impl.hpp
@@ -126,8 +126,8 @@ class kernel_bundle_impl
126
kernel_bundle_impl(context Ctx, devices_range Devs,
127
device_image_plain &&DevImage, private_tag Tag)
128
: kernel_bundle_impl(std::move(Ctx), Devs, Tag) {
129
- MDeviceImages.emplace_back(std::move(DevImage));
130
- MUniqueDeviceImages.emplace_back(DevImage);
+ MDeviceImages.emplace_back(DevImage);
+ MUniqueDeviceImages.emplace_back(std::move(DevImage));
131
}
132
133
// Matches sycl::build and sycl::compile
0 commit comments