Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{data}[fosscuda/2019b] JAX v0.1.77 w/ Python 3.7.4 #11595

Closed
6 changes: 6 additions & 0 deletions easybuild/easyconfigs/b/Bazel/Bazel-2.0.0-GCCcore-8.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ checksums = [
'99928d0902beeaf962a8ad14db8432f8e5114645e3caf64c7ee2fa136c31609f', # Bazel-0.29.1_fix-gold-flag.patch
]

# Bazel doesn't pass LD_LIBRARY_PATH etc. through, even to its own "process-wrapper".
# So we'll statically link bazel, to avoid errors like:
# "process-wrapper: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found"
# See https://github.com/bazelbuild/bazel/issues/4137
static = True

builddependencies = [
('binutils', '2.32'),
('Python', '3.7.4'),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This easyconfig was created by the BEAR Software team at the University of Birmingham.
name = 'JAX'
version = '0.1.77'
versionsuffix = '-Python-%(pyver)s'

homepage = "https://github.com/google/jax"
description = """JAX is Autograd and XLA, brought together for high-performance machine learning research."""

toolchain = {'name': 'fosscuda', 'version': '2019b'}

builddependencies = [('Bazel', '2.0.0')]

dependencies = [
('Python', '3.7.4'),
('SciPy-bundle', '2019.10', versionsuffix),
('cuDNN', '7.6.4.38'),
]

source_urls = ['https://github.com/google/jax/archive']
sources = ['jax-v%(version)s.tar.gz']
checksums = ['18fa3bcebf4b1a526349db5a76a508784ec5d05324c192c40f240ccbf9480e26']

moduleclass = 'data'