launcher.py 22.4 KB
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (c) Microsoft Corporation
# All rights reserved.
#
# MIT License
#
# Permission is hereby granted, free of charge,
# to any person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and
# to permit persons to whom the Software is furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
# BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


import json
import os
24
import sys
Deshui Yu's avatar
Deshui Yu committed
25
import shutil
26
import string
27
from subprocess import Popen, PIPE, call, check_output, check_call
Deshui Yu's avatar
Deshui Yu committed
28
import tempfile
29
from nni.constants import ModuleName
30
from nni_annotation import *
Deshui Yu's avatar
Deshui Yu committed
31
from .launcher_utils import validate_all_content
32
from .rest_utils import rest_put, rest_post, check_rest_server, check_rest_server_quick, check_response
SparkSnail's avatar
SparkSnail committed
33
from .url_utils import cluster_metadata_url, experiment_url, get_local_urls
34
35
from .config_utils import Config, Experiments
from .common_utils import get_yml_content, get_json_content, print_error, print_normal, print_warning, detect_process, detect_port
36
from .constants import *
37
import random
QuanluZhang's avatar
QuanluZhang committed
38
import site
39
import time
Gems Guo's avatar
Gems Guo committed
40
41
from pathlib import Path

42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
def get_log_path(config_file_name):
    '''generate stdout and stderr log path'''
    stdout_full_path = os.path.join(NNICTL_HOME_DIR, config_file_name, 'stdout')
    stderr_full_path = os.path.join(NNICTL_HOME_DIR, config_file_name, 'stderr')
    return stdout_full_path, stderr_full_path

def print_log_content(config_file_name):
    '''print log information'''
    stdout_full_path, stderr_full_path = get_log_path(config_file_name)
    print_normal(' Stdout:')
    stdout_cmds = ['cat', stdout_full_path]
    stdout_content = check_output(stdout_cmds)
    print(stdout_content.decode('utf-8'))
    print('\n\n')
    print_normal(' Stderr:')
    stderr_cmds = ['cat', stderr_full_path]
    stderr_content = check_output(stderr_cmds)
    print(stderr_content.decode('utf-8'))


62
def start_rest_server(port, platform, mode, config_file_name, experiment_id=None):
Deshui Yu's avatar
Deshui Yu committed
63
    '''Run nni manager process'''
64
    nni_config = Config(config_file_name)
65
    if detect_port(port):
66
67
68
69
        print_error('Port %s is used by another process, please reset the port!\n' \
        'You could use \'nnictl create --help\' to get help information' % port)
        exit(1)
    
70
    if (platform == 'pai' or platform == 'kubeflow') and detect_port(int(port) + 1):
71
72
73
        print_error('PAI mode need an additional adjacent port %d, and the port %d is used by another process!\n' \
        'You could set another port to start experiment!\n' \
        'You could use \'nnictl create --help\' to get help information' % ((int(port) + 1), (int(port) + 1)))
74
        exit(1)
Deshui Yu's avatar
Deshui Yu committed
75
76

    print_normal('Starting restful server...')
77
78
79
80
81
82
83
84
85
86
87
88
89
90
    # Find nni lib from the following locations in order
    sys_wide_python = True
    python_sitepackage = site.getsitepackages()[0]
    # If system-wide python is used, we will give priority to using user-sitepackage given that nni exists there
    if python_sitepackage.startswith('/usr') or python_sitepackage.startswith('/Library'):
        local_python_dir = str(Path(site.getusersitepackages()).parents[2])
        entry_file = os.path.join(local_python_dir, 'nni', 'main.js')
        entry_dir = os.path.join(local_python_dir, 'nni')
    else:
        # If this python is not system-wide python, we will use its site-package directly
        sys_wide_python = False

    if not sys_wide_python or not os.path.isfile(entry_file):
        python_dir = str(Path(python_sitepackage).parents[2])
QuanluZhang's avatar
QuanluZhang committed
91
92
        entry_file = os.path.join(python_dir, 'nni', 'main.js')
        entry_dir = os.path.join(python_dir, 'nni')
93
        # Nothing is found
QuanluZhang's avatar
QuanluZhang committed
94
        if not os.path.isfile(entry_file):
95
96
            raise Exception('Fail to find nni under both "%s" and "%s"' % (local_python_dir, python_dir))

QuanluZhang's avatar
QuanluZhang committed
97
    cmds = ['node', entry_file, '--port', str(port), '--mode', platform, '--start_mode', mode]
Deshui Yu's avatar
Deshui Yu committed
98
99
    if mode == 'resume':
        cmds += ['--experiment_id', experiment_id]
100
    stdout_full_path, stderr_full_path = get_log_path(config_file_name)
goooxu's avatar
goooxu committed
101
102
    stdout_file = open(stdout_full_path, 'a+')
    stderr_file = open(stderr_full_path, 'a+')
103
104
105
106
107
    time_now = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
    #add time information in the header of log files
    log_header = LOG_HEADER % str(time_now)
    stdout_file.write(log_header)
    stderr_file.write(log_header)
QuanluZhang's avatar
QuanluZhang committed
108
    process = Popen(cmds, cwd=entry_dir, stdout=stdout_file, stderr=stderr_file)
109
    return process, str(time_now)
Deshui Yu's avatar
Deshui Yu committed
110

111
def set_trial_config(experiment_config, port, config_file_name):
112
    '''set trial configuration'''
Deshui Yu's avatar
Deshui Yu committed
113
    request_data = dict()
114
    request_data['trial_config'] = experiment_config['trial']
Deshui Yu's avatar
Deshui Yu committed
115
    response = rest_put(cluster_metadata_url(port), json.dumps(request_data), 20)
116
117
118
    if check_response(response):
        return True
    else:
119
        print('Error message is {}'.format(response.text))
120
        _, stderr_full_path = get_log_path(config_file_name)
SparkSnail's avatar
SparkSnail committed
121
122
123
        if response:
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(response.text), indent=4, sort_keys=True, separators=(',', ':')))
124
        return False
125

126
def set_local_config(experiment_config, port, config_file_name):
127
    '''set local configuration'''
128
    return set_trial_config(experiment_config, port, config_file_name)
Deshui Yu's avatar
Deshui Yu committed
129

130
def set_remote_config(experiment_config, port, config_file_name):
Deshui Yu's avatar
Deshui Yu committed
131
132
133
134
135
    '''Call setClusterMetadata to pass trial'''
    #set machine_list
    request_data = dict()
    request_data['machine_list'] = experiment_config['machineList']
    response = rest_put(cluster_metadata_url(port), json.dumps(request_data), 20)
136
    err_message = ''
137
    if not response or not check_response(response):
138
139
        if response is not None:
            err_message = response.text
140
            _, stderr_full_path = get_log_path(config_file_name)
goooxu's avatar
goooxu committed
141
            with open(stderr_full_path, 'a+') as fout:
142
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
143
        return False, err_message
Deshui Yu's avatar
Deshui Yu committed
144
145

    #set trial_config
146
    return set_trial_config(experiment_config, port, config_file_name), err_message
Deshui Yu's avatar
Deshui Yu committed
147

148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
def setNNIManagerIp(experiment_config, port, config_file_name):
    '''set nniManagerIp'''
    if experiment_config.get('nniManagerIp') is None:
        return True, None
    ip_config_dict = dict()
    ip_config_dict['nni_manager_ip'] = { 'nniManagerIp' : experiment_config['nniManagerIp'] }
    response = rest_put(cluster_metadata_url(port), json.dumps(ip_config_dict), 20)
    err_message = None
    if not response or not response.status_code == 200:
        if response is not None:
            err_message = response.text
            _, stderr_full_path = get_log_path(config_file_name)
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
        return False, err_message
    return True, None

165
def set_pai_config(experiment_config, port, config_file_name):
166
167
168
169
    '''set pai configuration''' 
    pai_config_data = dict()
    pai_config_data['pai_config'] = experiment_config['paiConfig']
    response = rest_put(cluster_metadata_url(port), json.dumps(pai_config_data), 20)
170
    err_message = None
171
172
173
    if not response or not response.status_code == 200:
        if response is not None:
            err_message = response.text
174
            _, stderr_full_path = get_log_path(config_file_name)
175
            with open(stderr_full_path, 'a+') as fout:
chicm-ms's avatar
chicm-ms committed
176
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
177
        return False, err_message
178
179
180
    result, message = setNNIManagerIp(experiment_config, port, config_file_name)
    if not result:
        return result, message
181
    #set trial_config
182
    return set_trial_config(experiment_config, port, config_file_name), err_message
183

184
185
186
187
188
189
190
191
192
193
194
195
196
def set_kubeflow_config(experiment_config, port, config_file_name):
    '''set kubeflow configuration''' 
    kubeflow_config_data = dict()
    kubeflow_config_data['kubeflow_config'] = experiment_config['kubeflowConfig']
    response = rest_put(cluster_metadata_url(port), json.dumps(kubeflow_config_data), 20)
    err_message = None
    if not response or not response.status_code == 200:
        if response is not None:
            err_message = response.text
            _, stderr_full_path = get_log_path(config_file_name)
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
        return False, err_message
197
198
199
    result, message = setNNIManagerIp(experiment_config, port, config_file_name)
    if not result:
        return result, message
200
201
202
    #set trial_config
    return set_trial_config(experiment_config, port, config_file_name), err_message

203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
def set_frameworkcontroller_config(experiment_config, port, config_file_name):
    '''set kubeflow configuration''' 
    frameworkcontroller_config_data = dict()
    frameworkcontroller_config_data['frameworkcontroller_config'] = experiment_config['frameworkcontrollerConfig']
    response = rest_put(cluster_metadata_url(port), json.dumps(frameworkcontroller_config_data), 20)
    err_message = None
    if not response or not response.status_code == 200:
        if response is not None:
            err_message = response.text
            _, stderr_full_path = get_log_path(config_file_name)
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
        return False, err_message
    result, message = setNNIManagerIp(experiment_config, port, config_file_name)
    if not result:
        return result, message
    #set trial_config
    return set_trial_config(experiment_config, port, config_file_name), err_message

222
def set_experiment(experiment_config, mode, port, config_file_name):
Deshui Yu's avatar
Deshui Yu committed
223
224
225
226
227
228
229
    '''Call startExperiment (rest POST /experiment) with yaml file content'''
    request_data = dict()
    request_data['authorName'] = experiment_config['authorName']
    request_data['experimentName'] = experiment_config['experimentName']
    request_data['trialConcurrency'] = experiment_config['trialConcurrency']
    request_data['maxExecDuration'] = experiment_config['maxExecDuration']
    request_data['maxTrialNum'] = experiment_config['maxTrialNum']
230
    request_data['searchSpace'] = experiment_config.get('searchSpace')
231
232
233
234
    request_data['trainingServicePlatform'] = experiment_config.get('trainingServicePlatform')

    if experiment_config.get('description'):
        request_data['description'] = experiment_config['description']
chicm-ms's avatar
chicm-ms committed
235
236
    if experiment_config.get('multiPhase'):
        request_data['multiPhase'] = experiment_config.get('multiPhase')
237
238
    if experiment_config.get('multiThread'):
        request_data['multiThread'] = experiment_config.get('multiThread')
QuanluZhang's avatar
QuanluZhang committed
239
240
241
242
243
244
    if experiment_config.get('advisor'):
        request_data['advisor'] = experiment_config['advisor']
    else:
        request_data['tuner'] = experiment_config['tuner']
        if 'assessor' in experiment_config:
            request_data['assessor'] = experiment_config['assessor']
Deshui Yu's avatar
Deshui Yu committed
245
246
247
248

    request_data['clusterMetaData'] = []
    if experiment_config['trainingServicePlatform'] == 'local':
        request_data['clusterMetaData'].append(
249
            {'key':'codeDir', 'value':experiment_config['trial']['codeDir']})
Deshui Yu's avatar
Deshui Yu committed
250
        request_data['clusterMetaData'].append(
251
            {'key': 'command', 'value': experiment_config['trial']['command']})
252
    elif experiment_config['trainingServicePlatform'] == 'remote':
Deshui Yu's avatar
Deshui Yu committed
253
254
255
        request_data['clusterMetaData'].append(
            {'key': 'machine_list', 'value': experiment_config['machineList']})
        request_data['clusterMetaData'].append(
256
            {'key': 'trial_config', 'value': experiment_config['trial']})
257
258
    elif experiment_config['trainingServicePlatform'] == 'pai':
        request_data['clusterMetaData'].append(
259
            {'key': 'pai_config', 'value': experiment_config['paiConfig']})        
260
        request_data['clusterMetaData'].append(
261
262
263
264
265
266
            {'key': 'trial_config', 'value': experiment_config['trial']})
    elif experiment_config['trainingServicePlatform'] == 'kubeflow':
        request_data['clusterMetaData'].append(
            {'key': 'kubeflow_config', 'value': experiment_config['kubeflowConfig']})
        request_data['clusterMetaData'].append(
            {'key': 'trial_config', 'value': experiment_config['trial']})
267
268
269
270
271
    elif experiment_config['trainingServicePlatform'] == 'frameworkcontroller':
        request_data['clusterMetaData'].append(
            {'key': 'frameworkcontroller_config', 'value': experiment_config['frameworkcontrollerConfig']})
        request_data['clusterMetaData'].append(
            {'key': 'trial_config', 'value': experiment_config['trial']})
Deshui Yu's avatar
Deshui Yu committed
272
273

    response = rest_post(experiment_url(port), json.dumps(request_data), 20)
274
275
276
    if check_response(response):
        return response
    else:
277
        _, stderr_full_path = get_log_path(config_file_name)
SparkSnail's avatar
SparkSnail committed
278
279
280
        if response:
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(response.text), indent=4, sort_keys=True, separators=(',', ':')))
SparkSnail's avatar
SparkSnail committed
281
            print_error('Setting experiment error, error message is {}'.format(response.text))
282
        return None
Deshui Yu's avatar
Deshui Yu committed
283

284
def launch_experiment(args, experiment_config, mode, config_file_name, experiment_id=None):
Deshui Yu's avatar
Deshui Yu committed
285
    '''follow steps to start rest server and start experiment'''
286
    nni_config = Config(config_file_name)
287
288
289
290
291
292
293
294
295
296
297

    # check packages for tuner
    if experiment_config.get('tuner') and experiment_config['tuner'].get('builtinTunerName'):
        tuner_name = experiment_config['tuner']['builtinTunerName']
        module_name = ModuleName[tuner_name]
        try:
            check_call([sys.executable, '-c', 'import %s'%(module_name)])
        except ModuleNotFoundError as e:
            print_error('The tuner %s should be installed through nnictl'%(tuner_name))
            exit(1)

Deshui Yu's avatar
Deshui Yu committed
298
    # start rest server
299
    rest_process, start_time = start_rest_server(args.port, experiment_config['trainingServicePlatform'], mode, config_file_name, experiment_id)
Deshui Yu's avatar
Deshui Yu committed
300
301
302
    nni_config.set_config('restServerPid', rest_process.pid)
    # Deal with annotation
    if experiment_config.get('useAnnotation'):
Zejun Lin's avatar
Zejun Lin committed
303
        path = os.path.join(tempfile.gettempdir(), os.environ['USER'], 'nni', 'annotation')
QuanluZhang's avatar
QuanluZhang committed
304
305
        if not os.path.isdir(path):
            os.makedirs(path)
liuzhe-lz's avatar
liuzhe-lz committed
306
307
308
309
        path = tempfile.mkdtemp(dir=path)
        code_dir = expand_annotations(experiment_config['trial']['codeDir'], path)
        experiment_config['trial']['codeDir'] = code_dir
        search_space = generate_search_space(code_dir)
310
        experiment_config['searchSpace'] = json.dumps(search_space)
Deshui Yu's avatar
Deshui Yu committed
311
        assert search_space, ERROR_INFO % 'Generated search space is empty'
312
313
314
    elif experiment_config.get('searchSpacePath'):
            search_space = get_json_content(experiment_config.get('searchSpacePath'))
            experiment_config['searchSpace'] = json.dumps(search_space)
Deshui Yu's avatar
Deshui Yu committed
315
    else:
316
        experiment_config['searchSpace'] = json.dumps('')
Deshui Yu's avatar
Deshui Yu committed
317
318

    # check rest server
goooxu's avatar
goooxu committed
319
    running, _ = check_rest_server(args.port)
320
    if running:
321
        print_normal('Successfully started Restful server!')
Deshui Yu's avatar
Deshui Yu committed
322
323
    else:
        print_error('Restful server start failed!')
324
        print_log_content(config_file_name)
Deshui Yu's avatar
Deshui Yu committed
325
        try:
Gems Guo's avatar
Gems Guo committed
326
            cmds = ['kill', str(rest_process.pid)]
327
            call(cmds)
Deshui Yu's avatar
Deshui Yu committed
328
329
        except Exception:
            raise Exception(ERROR_INFO % 'Rest server stopped!')
goooxu's avatar
goooxu committed
330
        exit(1)
Deshui Yu's avatar
Deshui Yu committed
331
332
333
334

    # set remote config
    if experiment_config['trainingServicePlatform'] == 'remote':
        print_normal('Setting remote config...')
335
        config_result, err_msg = set_remote_config(experiment_config, args.port, config_file_name)
336
        if config_result:
337
            print_normal('Successfully set remote config!')
Deshui Yu's avatar
Deshui Yu committed
338
        else:
339
            print_error('Failed! Error is: {}'.format(err_msg))
Deshui Yu's avatar
Deshui Yu committed
340
            try:
Gems Guo's avatar
Gems Guo committed
341
                cmds = ['kill', str(rest_process.pid)]
342
                call(cmds)
Deshui Yu's avatar
Deshui Yu committed
343
344
            except Exception:
                raise Exception(ERROR_INFO % 'Rest server stopped!')
goooxu's avatar
goooxu committed
345
            exit(1)
Deshui Yu's avatar
Deshui Yu committed
346
347
348
349

    # set local config
    if experiment_config['trainingServicePlatform'] == 'local':
        print_normal('Setting local config...')
350
        if set_local_config(experiment_config, args.port, config_file_name):
351
            print_normal('Successfully set local config!')
Deshui Yu's avatar
Deshui Yu committed
352
        else:
353
            print_error('Set local config failed!')
Deshui Yu's avatar
Deshui Yu committed
354
            try:
Gems Guo's avatar
Gems Guo committed
355
                cmds = ['kill', str(rest_process.pid)]
356
                call(cmds)
Deshui Yu's avatar
Deshui Yu committed
357
358
            except Exception:
                raise Exception(ERROR_INFO % 'Rest server stopped!')
goooxu's avatar
goooxu committed
359
            exit(1)
360
361
362
363
    
    #set pai config
    if experiment_config['trainingServicePlatform'] == 'pai':
        print_normal('Setting pai config...')
364
        config_result, err_msg = set_pai_config(experiment_config, args.port, config_file_name)
365
        if config_result:
366
            print_normal('Successfully set pai config!')
367
        else:
368
369
            if err_msg:
                print_error('Failed! Error is: {}'.format(err_msg))
370
            try:
Gems Guo's avatar
Gems Guo committed
371
                cmds = ['kill', str(rest_process.pid)]
372
373
                call(cmds)
            except Exception:
374
                raise Exception(ERROR_INFO % 'Restful server stopped!')
goooxu's avatar
goooxu committed
375
            exit(1)
376
377
378
379
380
381
382
383
384
385
386
    
    #set kubeflow config
    if experiment_config['trainingServicePlatform'] == 'kubeflow':
        print_normal('Setting kubeflow config...')
        config_result, err_msg = set_kubeflow_config(experiment_config, args.port, config_file_name)
        if config_result:
            print_normal('Successfully set kubeflow config!')
        else:
            if err_msg:
                print_error('Failed! Error is: {}'.format(err_msg))
            try:
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
                cmds = ['pkill', str(rest_process.pid)]
                call(cmds)
            except Exception:
                raise Exception(ERROR_INFO % 'Restful server stopped!')
            exit(1)
    
        #set kubeflow config
    if experiment_config['trainingServicePlatform'] == 'frameworkcontroller':
        print_normal('Setting frameworkcontroller config...')
        config_result, err_msg = set_frameworkcontroller_config(experiment_config, args.port, config_file_name)
        if config_result:
            print_normal('Successfully set frameworkcontroller config!')
        else:
            if err_msg:
                print_error('Failed! Error is: {}'.format(err_msg))
            try:
                cmds = ['pkill', str(rest_process.pid)]
404
405
406
407
                call(cmds)
            except Exception:
                raise Exception(ERROR_INFO % 'Restful server stopped!')
            exit(1)
Deshui Yu's avatar
Deshui Yu committed
408
409
410

    # start a new experiment
    print_normal('Starting experiment...')
411
    response = set_experiment(experiment_config, mode, args.port, config_file_name)
Deshui Yu's avatar
Deshui Yu committed
412
413
414
415
416
    if response:
        if experiment_id is None:
            experiment_id = json.loads(response.text).get('experiment_id')
        nni_config.set_config('experimentId', experiment_id)
    else:
417
418
        print_error('Start experiment failed!')
        print_log_content(config_file_name)
Deshui Yu's avatar
Deshui Yu committed
419
        try:
Gems Guo's avatar
Gems Guo committed
420
            cmds = ['kill', str(rest_process.pid)]
421
            call(cmds)
Deshui Yu's avatar
Deshui Yu committed
422
        except Exception:
423
            raise Exception(ERROR_INFO % 'Restful server stopped!')
goooxu's avatar
goooxu committed
424
        exit(1)
425
426
427
428
    if experiment_config.get('nniManagerIp'):
        web_ui_url_list = ['{0}:{1}'.format(experiment_config['nniManagerIp'], str(args.port))]
    else:
        web_ui_url_list = get_local_urls(args.port)
SparkSnail's avatar
SparkSnail committed
429
    nni_config.set_config('webuiUrl', web_ui_url_list)
430
431
    
    #save experiment information
SparkSnail's avatar
SparkSnail committed
432
433
    nnictl_experiment_config = Experiments()
    nnictl_experiment_config.add_experiment(experiment_id, args.port, start_time, config_file_name, experiment_config['trainingServicePlatform'])
434
435

    print_normal(EXPERIMENT_SUCCESS_INFO % (experiment_id, '   '.join(web_ui_url_list)))
Deshui Yu's avatar
Deshui Yu committed
436
437
438

def resume_experiment(args):
    '''resume an experiment'''
439
440
441
442
443
444
    experiment_config = Experiments()
    experiment_dict = experiment_config.get_all_experiments()
    experiment_id = None
    experiment_endTime = None
    #find the latest stopped experiment
    if not args.id:
SparkSnail's avatar
SparkSnail committed
445
446
447
        print_error('Please set experiment id! \nYou could use \'nnictl resume {id}\' to resume a stopped experiment!\n' \
        'You could use \'nnictl experiment list all\' to show all of stopped experiments!')
        exit(1)
448
449
450
451
452
453
454
455
456
457
    else:
        if experiment_dict.get(args.id) is None:
            print_error('Id %s not exist!' % args.id)
            exit(1)
        if experiment_dict[args.id]['status'] == 'running':
            print_error('Experiment %s is running!' % args.id)
            exit(1)
        experiment_id = args.id
    print_normal('Resuming experiment %s...' % experiment_id)
    nni_config = Config(experiment_dict[experiment_id]['fileName'])
Deshui Yu's avatar
Deshui Yu committed
458
459
    experiment_config = nni_config.get_config('experimentConfig')
    experiment_id = nni_config.get_config('experimentId')
SparkSnail's avatar
SparkSnail committed
460
461
462
463
464
    new_config_file_name = ''.join(random.sample(string.ascii_letters + string.digits, 8))
    new_nni_config = Config(new_config_file_name)
    new_nni_config.set_config('experimentConfig', experiment_config)
    launch_experiment(args, experiment_config, 'resume', new_config_file_name, experiment_id)
    new_nni_config.set_config('restServerPort', args.port)
Deshui Yu's avatar
Deshui Yu committed
465
466
467

def create_experiment(args):
    '''start a new experiment'''
468
469
    config_file_name = ''.join(random.sample(string.ascii_letters + string.digits, 8))
    nni_config = Config(config_file_name)
470
    config_path = os.path.abspath(args.config)
goooxu's avatar
goooxu committed
471
472
473
    if not os.path.exists(config_path):
        print_error('Please set correct config path!')
        exit(1)
474
475
    experiment_config = get_yml_content(config_path)
    validate_all_content(experiment_config, config_path)
Deshui Yu's avatar
Deshui Yu committed
476
477

    nni_config.set_config('experimentConfig', experiment_config)
478
    launch_experiment(args, experiment_config, 'new', config_file_name)
goooxu's avatar
goooxu committed
479
    nni_config.set_config('restServerPort', args.port)