Skip to content
Merged
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
8 changes: 5 additions & 3 deletions cscs-checks/apps/tensorflow/tensorflow_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

class TensorFlowBaseTest(rfm.RunOnlyRegressionTest):
def __init__(self, model_name):
super().__init__()
self.name = 'tensorflow_%s_check' % model_name
self.descr = 'Tensorflow official %s test' % model_name
self.valid_systems = ['daint:gpu', 'dom:gpu']
Expand All @@ -14,11 +13,14 @@ def __init__(self, model_name):
self.tags = {'production'}
self.num_tasks = 1
self.num_gpus_per_node = 1
self.modules = ['TensorFlow/1.12.0-CrayGNU-19.03-cuda-10.0-python3']
tf_version = '1.14.0'
cuda_version = '10.1.168'
self.modules = ['TensorFlow/%s-CrayGNU-19.06-cuda-%s-python3' %
(tf_version, cuda_version)]

# Checkout to the branch corresponding to the module version of
# TensorFlow
self.pre_run = ['git checkout r1.12.0']
self.pre_run = ['git checkout r%s' % tf_version]
self.variables = {'PYTHONPATH': '$PYTHONPATH:.'}


Expand Down