File tree 1 file changed +27
-0
lines changed
scripts/benchmarks/benches
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -355,3 +355,30 @@ def bin_args(self) -> list[str]:
355
355
f"--SrcUSM={ self .srcUSM } " ,
356
356
f"--DstUSM={ self .dstUSM } " ,
357
357
]
358
+
359
+ class GraphApiSinKernelSYCL (ComputeBenchmark ):
360
+ def __init__ (self , bench ):
361
+ super ().__init__ (bench , "graph_api_benchmark_sycl" , "SinKernel" )
362
+
363
+ def name (self ):
364
+ return f"graph_api_benchmark_sycl SinKernel"
365
+
366
+ def bin_args (self ) -> list [str ]:
367
+ return [
368
+ "--iterations=1000" ,
369
+ "--numKernels=100" ,
370
+ ]
371
+
372
+ class GraphApiSubmitExecute (ComputeBenchmark ):
373
+ def __init__ (self , bench ):
374
+ super ().__init__ (bench , "graph_api_benchmark_sycl" , "SubmitExecute" )
375
+
376
+ def name (self ):
377
+ return f"graph_api_benchmark_sycl SubmitExecute"
378
+
379
+ def bin_args (self ) -> list [str ]:
380
+ return [
381
+ "--iterations=1000" ,
382
+ "--numKernels=100" ,
383
+ ]
384
+
You can’t perform that action at this time.
0 commit comments