We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7093bf commit 52605c3Copy full SHA for 52605c3
devops/scripts/benchmarks/benches/compute.py
@@ -565,6 +565,14 @@ def name(self):
565
+ (" without copy offload" if not self.useCopyOffload else "")
566
)
567
568
+ def explicit_group(self):
569
+ return (
570
+ "MemcpyExecute opsPerThread: "
571
+ + str(self.numOpsPerThread)
572
+ + " numThreads: "
573
+ + str(self.numThreads)
574
+ )
575
+
576
def description(self) -> str:
577
src_type = "device" if self.srcUSM == 1 else "host"
578
dst_type = "device" if self.dstUSM == 1 else "host"
0 commit comments