Skip to content

Commit

Permalink
remove node type
Browse files Browse the repository at this point in the history
  • Loading branch information
sean committed Aug 20, 2024
1 parent 3d83a18 commit 5f3d4fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion sky/provision/cudo/cudo_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

def launch(name: str, data_center_id: str, ssh_key: str, machine_type: str,
memory_gib: int, vcpu_count: int, gpu_count: int,
tags: Dict[str, str], disk_size: int, node_type, net_name):
tags: Dict[str, str], disk_size: int, net_name):
"""Launches an instance with the given parameters."""

request = cudo.cudo.CreateVMBody(
Expand Down
1 change: 0 additions & 1 deletion sky/provision/cudo/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ def run_instances(region: str, cluster_name_on_cloud: str,
gpu_count=gpu_count,
tags={},
disk_size=config.node_config['DiskSize'],
node_type=node_type,
net_name=cluster_name_on_cloud)
except Exception as e: # pylint: disable=broad-except
logger.warning(f'run_instances error: {e}')
Expand Down

0 comments on commit 5f3d4fb

Please sign in to comment.