Equivalent of TestNG 'suitethreadpoolsize' in build.gradle

There is an option in TestNG which allows to run several suite xml files in parallel - suitethreadpoolsize
I can’t find it in TestNGOptions class in gradle. The only option I see is threadcount - but it is used for parallelization of tests and methods, not suites.

Does gradle support such option at all?