Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace cl_queue_properties_khr with cl_command_queue_properties #1768

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions test_conformance/api/test_queue_properties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,9 @@ int test_queue_properties(cl_device_id deviceID, cl_context context, cl_command_

clProgramWrapper program;
clKernelWrapper kernel;
cl_queue_properties_khr device_props = 0;
cl_queue_properties_khr queue_prop_def[] = { CL_QUEUE_PROPERTIES, 0, 0 };
cl_command_queue_properties device_props = 0;
cl_command_queue_properties queue_prop_def[] = { CL_QUEUE_PROPERTIES, 0,
0 };

// Query extension
if (!is_extension_available(deviceID, "cl_khr_create_command_queue"))
Expand Down Expand Up @@ -162,4 +163,4 @@ int test_queue_properties(cl_device_id deviceID, cl_context context, cl_command_
}

return 0;
}
}
Loading