fix multithread issue in DNN

This commit is contained in:
bohanjason
2019-12-16 22:27:14 -05:00
committed by Dana Van Aken
parent 2a7bc6145f
commit c76c8e7bfb
2 changed files with 144 additions and 112 deletions

View File

@@ -760,9 +760,21 @@ def integration_tests():
response = get_result(upload_code='ottertuneTestTuningDNN')
assert response['status'] == 'good'
# 2rd iteration Test DNN
upload_result(result_dir='./integrationTests/data/', prefix='1__',
upload_code='ottertuneTestTuningDNN')
response = get_result(upload_code='ottertuneTestTuningDNN')
assert response['status'] == 'good'
# Test GPR
LOG.info('Test GPR (gaussian process regression)')
upload_result(result_dir='./integrationTests/data/', prefix='0__',
upload_code='ottertuneTestTuningGPR')
response = get_result(upload_code='ottertuneTestTuningGPR')
assert response['status'] == 'good'
# 2rd iteration Test GPR
upload_result(result_dir='./integrationTests/data/', prefix='1__',
upload_code='ottertuneTestTuningGPR')
response = get_result(upload_code='ottertuneTestTuningGPR')
assert response['status'] == 'good'