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 d6ae2a9 commit fa084d0Copy full SHA for fa084d0
source/adapters/native_cpu/kernel.hpp
@@ -45,7 +45,8 @@ struct ur_kernel_handle_t_ : RefCounted {
45
HasReqdWGSize(false) {}
46
47
ur_kernel_handle_t_(const ur_kernel_handle_t_ &other)
48
- : _name(other._name), _subhandler(other._subhandler), _args(other._args),
+ : hProgram(other.hProgram), _name(other._name),
49
+ _subhandler(other._subhandler), _args(other._args),
50
_localArgInfo(other._localArgInfo), _localMemPool(other._localMemPool),
51
_localMemPoolSize(other._localMemPoolSize),
52
HasReqdWGSize(other.HasReqdWGSize), ReqdWGSize(other.ReqdWGSize) {
0 commit comments