Skip to content

Commit 8228482

Browse files
committed
bring all workers online
1 parent c0243ce commit 8228482

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

ludwig/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def status():
5555
status_, output = subprocess.getstatusoutput(command)
5656

5757
if status_ != 0:
58-
return 'Something went wrong. Check your access to the shared drive. Try using --mnt flag.'
58+
print(output)
59+
return 'Something went wrong. Check your access to the shared drive. Try using -mnt PATH_TO_DRIVE.'
5960

6061
lines = str(output).split('\n')
6162
lines_with_ludwig_status = [line for line in lines if 'Ludwig' in line]

ludwig/configs.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ class WorkerDirs:
1212
class Remote:
1313
watched_pattern = 'run*.py' # this is required for watcher to know which file to run
1414
path_to_ssh_config = Path.home() / '.ssh' / 'ludwig_config'
15-
online_worker_names = ['norman', 'hebb', 'hinton', 'pitts', 'hawkins', 'lecun']
16-
# TODO bengio is down - march 24 2020
17-
# todo hoff - no NVIDIA driver found by torch.
15+
online_worker_names = ['norman', 'hebb', 'hinton', 'pitts', 'hawkins', 'lecun', 'hoff', 'bengio']
1816
all_worker_names = ['hoff', 'norman', 'hebb', 'hinton', 'pitts', 'hawkins', 'bengio', 'lecun']
1917
group2workers = {'half1': ['hoff', 'norman', 'hebb', 'hinton'],
2018
'half2': ['pitts', 'hawkins', 'bengio', 'lecun']}

0 commit comments

Comments
 (0)