diff --git a/rocclr/runtime/device/gpu/gpukernel.cpp b/rocclr/runtime/device/gpu/gpukernel.cpp index e477080fcc..0a40baefed 100644 --- a/rocclr/runtime/device/gpu/gpukernel.cpp +++ b/rocclr/runtime/device/gpu/gpukernel.cpp @@ -3374,6 +3374,7 @@ GetOclSize(const aclArgData* argInfo) } case ARG_TYPE_IMAGE: return sizeof(cl_mem); case ARG_TYPE_SAMPLER: return sizeof(cl_sampler); + case ARG_TYPE_QUEUE: return sizeof(cl_command_queue); default: return -1; } }