KhronosGroup / KhronosGroup/OpenCL-CTS

Basic async_work_group_copy_fence_import_after_export_aliased_local tests wait on wrong number of events

Open
#1,412 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
C++
Stars
232
Forks
235
Avg merge
8d 7h
Merged PRs (30d)
18

Description

In many kernels used by cl_khr_async_work_group_copy_fence there is a call to wait_group_events on 2 events even though only 1 event is given.

```c++
wait_group_events( 2, &events )
```

I believe this is a bug in the kernel and should be instead

```c++
wait_group_events( 1, &events )
```

Contributor guide

No contributing guide indexed for this repository

Research direction

Search the OpenCL-CTS tests for the async_work_group_copy_fence_import_after_export_aliased_local kernels and the shown wait_group_events call. Check each occurrence against the number of supplied events, update the affected tests, and run the corresponding conformance tests to verify they pass.

Written by the indexing model from the issue text.

Assessment

Tech stack
cpp
Domain
testing-qa
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.