Skip to content

Commit

Permalink
Added multicore driver to ParsodaUseCaseParameters
Browse files Browse the repository at this point in the history
  • Loading branch information
sv-giampa committed Oct 6, 2023
1 parent 1d3a441 commit f2e4dd3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/usecase/parsoda_usecase_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ def type_driver(arg: str) -> ParsodaDriver:
from parsoda.model.driver.parsoda_pyspark_driver import ParsodaPySparkDriver
import pyspark
return ParsodaPySparkDriver(pyspark.SparkContext(conf=pyspark.SparkConf()))
elif arg == "multicore":
from parsoda.model.driver.parsoda_multicore_driver import ParsodaMultiCoreDriver
return ParsodaMultiCoreDriver()
elif arg == "singlecore":
from parsoda.model.driver.parsoda_singlecore_driver import ParsodaSingleCoreDriver
return ParsodaSingleCoreDriver()
Expand Down

0 comments on commit f2e4dd3

Please # to comment.