Skip to content

Commit fb644b0

Browse files
author
Theofilos Manitaras
committed
Update tensorflow/horovod tests for latest modules
1 parent ec120ff commit fb644b0

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

cscs-checks/apps/tensorflow/tensorflow_check.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ def __init__(self, model_name):
2020

2121
# Checkout to the branch corresponding to the module version of
2222
# TensorFlow
23-
self.pre_run = ['git checkout r%s' % tf_version]
23+
# FIXME: Currently the branch for Tensorflow 1.14.0 is not
24+
# available, we use the one for 1.13.0
25+
# self.pre_run = ['git checkout r%s' % tf_version]
26+
self.pre_run = ['git checkout r1.13.0']
2427
self.variables = {'PYTHONPATH': '$PYTHONPATH:.'}
2528

2629

cscs-checks/apps/tensorflow/tf_horovod_check.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@
66
@rfm.parameterized_test(['small'], ['large'])
77
class TensorFlowHorovodTest(rfm.RunOnlyRegressionTest):
88
def __init__(self, variant):
9-
super().__init__()
109
self.descr = 'Distributed training with TensorFlow and Horovod'
1110
self.valid_systems = ['daint:gpu']
1211
self.valid_prog_environs = ['PrgEnv-gnu']
13-
tfshortver = '1.12'
12+
tfshortver = '1.14'
1413
self.sourcesdir = 'https://github.com/tensorflow/benchmarks'
15-
self.modules = ['Horovod/0.16.0-CrayGNU-19.03-tf-%s.0' % tfshortver]
14+
self.modules = ['Horovod/0.16.4-CrayGNU-19.06-tf-%s.0' % tfshortver]
1615
if variant == 'small':
1716
self.valid_systems += ['dom:gpu']
1817
self.num_tasks = 8

0 commit comments

Comments
 (0)