Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions mlvm/test_mlvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class MLVMTestCase(DataprocTestCase):
RAPIDS_DASK_SCRIPT = "verify_rapids_dask.py"
DASK_YARN_SCRIPT = "verify_dask_yarn.py"
DASK_STANDALONE_SCRIPT = "verify_dask_standalone.py"
#dummy

def verify_python(self):
self.assert_dataproc_job(
Expand Down Expand Up @@ -123,11 +124,8 @@ def test_mlvm_gpu(self, configuration, dask_runtime, rapids_runtime):
if self.getImageVersion() < pkg_resources.parse_version("2.0"):
self.skipTest("Not supported in pre 2.0 images")

metadata = ("init-actions-repo={},include-gpus=true"
",gpu-driver-provider=NVIDIA").format(self.INIT_ACTIONS_REPO)

cudnn_version = "8.1.1.33"
cuda_version = "11.2"
cudnn_version = "9.1.0.70"
cuda_version = "12.4"

metadata = ("init-actions-repo={},include-gpus=true"
",gpu-driver-provider=NVIDIA,"
Expand All @@ -143,7 +141,7 @@ def test_mlvm_gpu(self, configuration, dask_runtime, rapids_runtime):
configuration,
self.INIT_ACTIONS,
optional_components=self.OPTIONAL_COMPONENTS,
machine_type="n1-standard-4",
machine_type="n1-highmem-8",
master_accelerator="type=nvidia-tesla-t4",
worker_accelerator="type=nvidia-tesla-t4",
timeout_in_minutes=60,
Expand Down