This repository was archived by the owner on Apr 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,21 @@ def sentence_14(self):
59
59
result = run_swift_wordseg_benchmark (name = self .benchmark_name , sentence_length = '14' , backend = 'eager' )
60
60
self .report_benchmark (** result )
61
61
62
+ def sentence_4_x10 (self ):
63
+ """Runner-callable benchmark entry point for WordSeg sentence-length 4 benchmark on X10."""
64
+ result = run_swift_wordseg_benchmark (name = self .benchmark_name , sentence_length = '4' , backend = 'x10' )
65
+ self .report_benchmark (** result )
66
+
67
+ def sentence_8_x10 (self ):
68
+ """Runner-callable benchmark entry point for WordSeg sentence-length 8 benchmark on X10."""
69
+ result = run_swift_wordseg_benchmark (name = self .benchmark_name , sentence_length = '8' , backend = 'x10' )
70
+ self .report_benchmark (** result )
71
+
72
+ def sentence_14_x10 (self ):
73
+ """Runner-callable benchmark entry point for WordSeg sentence-length 14 benchmark on X10."""
74
+ result = run_swift_wordseg_benchmark (name = self .benchmark_name , sentence_length = '14' , backend = 'x10' )
75
+ self .report_benchmark (** result )
76
+
62
77
def training (self ):
63
78
"""Runner-callable benchmark entry point for eager training benchmark."""
64
79
result = run_swift_benchmark (name = self .benchmark_name , variety = 'training' , backend = 'eager' )
You can’t perform that action at this time.
0 commit comments