From 955a8ec8c82d66042b1f47da59daad1855105a2f Mon Sep 17 00:00:00 2001 From: easybuild Date: Thu, 21 Dec 2017 12:10:09 +0100 Subject: [PATCH] new file: k/Keras/Keras-2.1.2-Tensorflow-1.1.0-CUDA-8.0.44-Python-3.6.1.eb --- ...nsorflow-1.1.0-CUDA-8.0.44-Python-3.6.1.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 k/Keras/Keras-2.1.2-Tensorflow-1.1.0-CUDA-8.0.44-Python-3.6.1.eb diff --git a/k/Keras/Keras-2.1.2-Tensorflow-1.1.0-CUDA-8.0.44-Python-3.6.1.eb b/k/Keras/Keras-2.1.2-Tensorflow-1.1.0-CUDA-8.0.44-Python-3.6.1.eb new file mode 100644 index 00000000..6939e02f --- /dev/null +++ b/k/Keras/Keras-2.1.2-Tensorflow-1.1.0-CUDA-8.0.44-Python-3.6.1.eb @@ -0,0 +1,33 @@ +easyblock = 'PythonPackage' + +name = 'Keras' +version = '2.1.2' +versionsuffix = '-Tensorflow-1.1.0-CUDA-8.0.44-Python-%(pyver)s' + +homepage = 'https://keras.io/' +description = """Keras is a minimalist, highly modular neural networks library, written in Python and +capable of running on top of either TensorFlow or Theano.""" + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = ['https://github.com/keras-team/keras/archive'] +sources = ['%(version)s.tar.gz'] + +use_pip = True + +dependencies = [ + ('Python', '3.6.1'), + ('Tensorflow', '1.1.0', '-CUDA-8.0.44-Python-%(pyver)s'), +# ('h5py', '2.7.0', '%(versionsuffix)s'), internal Python 3.6.1 +# ('PyYAML', '3.12', versionsuffix), internal Python 3.6.1 +] + +# it defaults to Tensorflow +modextravars = {'KERAS_BACKEND': 'tensorflow'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'math'