@@ -296,29 +296,29 @@ public let SetTests = [
296
296
// Legacy benchmarks, kept for continuity with previous releases.
297
297
BenchmarkInfo (
298
298
name: " SetExclusiveOr " , // ~"SetSymmetricDifferenceInt0"
299
- runFunction: { n in run_SetSymmetricDifferenceInt ( setAB, setCD, countABCD, 100 * n) } ,
299
+ runFunction: { n in run_SetSymmetricDifferenceInt ( setAB, setCD, countABCD, 10 * n) } ,
300
300
tags: [ . validation, . api, . Set] ,
301
- setUpFunction: { blackHole ( [ setAB, setCD] ) } ) ,
301
+ setUpFunction: { blackHole ( [ setAB, setCD] ) } , legacyFactor : 10 ) ,
302
302
BenchmarkInfo (
303
303
name: " SetExclusiveOr_OfObjects " , // ~"SetSymmetricDifferenceBox0"
304
- runFunction: { n in run_SetSymmetricDifferenceBox ( setOAB, setOCD, countABCD, 100 * n) } ,
304
+ runFunction: { n in run_SetSymmetricDifferenceBox ( setOAB, setOCD, countABCD, 10 * n) } ,
305
305
tags: [ . validation, . api, . Set] ,
306
- setUpFunction: { blackHole ( [ setOAB, setOCD] ) } ) ,
306
+ setUpFunction: { blackHole ( [ setOAB, setOCD] ) } , legacyFactor : 10 ) ,
307
307
BenchmarkInfo (
308
308
name: " SetIntersect " , // ~"SetIntersectionInt0"
309
- runFunction: { n in run_SetIntersectionInt ( setAB, setCD, 0 , 100 * n) } ,
309
+ runFunction: { n in run_SetIntersectionInt ( setAB, setCD, 0 , 10 * n) } ,
310
310
tags: [ . validation, . api, . Set] ,
311
- setUpFunction: { blackHole ( [ setAB, setCD] ) } ) ,
311
+ setUpFunction: { blackHole ( [ setAB, setCD] ) } , legacyFactor : 10 ) ,
312
312
BenchmarkInfo (
313
313
name: " SetUnion " , // ~"SetUnionInt0"
314
- runFunction: { n in run_SetUnionInt ( setAB, setCD, countABCD, 100 * n) } ,
314
+ runFunction: { n in run_SetUnionInt ( setAB, setCD, countABCD, 10 * n) } ,
315
315
tags: [ . validation, . api, . Set] ,
316
- setUpFunction: { blackHole ( [ setAB, setCD] ) } ) ,
316
+ setUpFunction: { blackHole ( [ setAB, setCD] ) } , legacyFactor : 10 ) ,
317
317
BenchmarkInfo (
318
318
name: " SetUnion_OfObjects " , // ~"SetUnionBox0"
319
- runFunction: { n in run_SetUnionBox ( setOAB, setOCD, countABCD, 100 * n) } ,
319
+ runFunction: { n in run_SetUnionBox ( setOAB, setOCD, countABCD, 10 * n) } ,
320
320
tags: [ . validation, . api, . Set] ,
321
- setUpFunction: { blackHole ( [ setOAB, setOCD] ) } ) ,
321
+ setUpFunction: { blackHole ( [ setOAB, setOCD] ) } , legacyFactor : 10 ) ,
322
322
]
323
323
324
324
@inline ( never)
0 commit comments