Skip to content

Commit 0ffd0f3

Browse files
committed
Remove explicit LocalWorkSize.
Signed-off-by: JackAKirk <[email protected]>
1 parent 6b492be commit 0ffd0f3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/conformance/exp_launch_attributes/launch_attributes.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,9 @@ TEST_P(urEnqueueKernelLaunchCustomTest, Success) {
4848
attr[0].value.clusterDim[0] = global_size;
4949
attr[0].value.clusterDim[1] = 1;
5050
attr[0].value.clusterDim[2] = 1;
51-
size_t LocalWorkSize = 5;
5251

5352
ASSERT_SUCCESS(urEnqueueKernelLaunchCustomExp(queue, kernel, n_dimensions,
54-
&global_size, &LocalWorkSize, 1,
53+
&global_size, nullptr, 1,
5554
attr, 0, nullptr, nullptr));
5655
ASSERT_SUCCESS(urQueueFinish(queue));
5756
ValidateBuffer(buffer, sizeof(val) * global_size, val);

0 commit comments

Comments
 (0)