We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 733652a commit 2665c2cCopy full SHA for 2665c2c
1 file changed
test/npu-xrt/vec_mul_event_trace/test.py
@@ -286,10 +286,10 @@ def main():
286
print(f"INSTR_EVENT_1 count: {instr_event_1_count}")
287
288
# Verify expected counts. The kernel is expected to generate 4 of each event.
289
- if instr_event_0_count != 4:
+ if instr_event_0_count >= 4:
290
print(f"ERROR: Expected 4 INSTR_EVENT_0 events, found {instr_event_0_count}")
291
errors += 1
292
- if instr_event_1_count != 4:
+ if instr_event_1_count >= 4:
293
print(f"ERROR: Expected 4 INSTR_EVENT_1 events, found {instr_event_1_count}")
294
295
0 commit comments