Skip to content

Commit 3e54524

Browse files
authored
[SYCL][Benchmarks] group MemcpyExecute benchmarks (#18399)
to be able to compare performance with and without events and copy offload.
1 parent b5abc8a commit 3e54524

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

devops/scripts/benchmarks/benches/compute.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,14 @@ def name(self):
565565
+ (" without copy offload" if not self.useCopyOffload else "")
566566
)
567567

568+
def explicit_group(self):
569+
return (
570+
"MemcpyExecute opsPerThread: "
571+
+ str(self.numOpsPerThread)
572+
+ " numThreads: "
573+
+ str(self.numThreads)
574+
)
575+
568576
def description(self) -> str:
569577
src_type = "device" if self.srcUSM == 1 else "host"
570578
dst_type = "device" if self.dstUSM == 1 else "host"

0 commit comments

Comments
 (0)