level-zero-tests icon indicating copy to clipboard operation
level-zero-tests copied to clipboard

Incorrect index in zeEventCreate() in GivenConcurrentLogicalCommandQueuesWhenStartSynchronizedThenHighPriorityCompletesFirst

Open Alexandr-Konovalov opened this issue 2 years ago • 0 comments

ze_event_desc_t::index in

        event_desc.index = index++;
        auto event_compute_low = lzt::create_event(ep_time, event_desc);
        event_compute_lows.push_back(event_compute_low);

should be initialized by pre-increment, as currently 1st element of event_compute_lows and event_compute_high is same event, because they created using same index.

Alexandr-Konovalov avatar Feb 07 '23 17:02 Alexandr-Konovalov