added relion version 3 (beta) (#8872)
* added relion 3 beta - WIP * added relion 3 beta - WIP * more relion changes - still WIP * more changes for relion * more changes * now correctly handling cuda_arch * now correctly handling cuda_arch * fixed flake8 syntax errors * fixed flake8 syntax errors * merge * fixed flake8 errors again * relion 3 finished * added print message to cuda_arch exception * relion - shortened explination * still need tag=2.0.3 for v 2.0.3 - removed @develop since it no longer exists * correct cuda versions now used properly * relion 3 done * added tags back * fixed exception message * relion - added develop back as master
This commit is contained in:
parent
cd446a9668
commit
be11608732
1 changed files with 36 additions and 17 deletions
|
@ -34,29 +34,45 @@ class Relion(CMakePackage, CudaPackage):
|
||||||
homepage = "http://http://www2.mrc-lmb.cam.ac.uk/relion"
|
homepage = "http://http://www2.mrc-lmb.cam.ac.uk/relion"
|
||||||
git = "https://github.com/3dem/relion.git"
|
git = "https://github.com/3dem/relion.git"
|
||||||
|
|
||||||
version('develop')
|
version('3.0_beta',
|
||||||
version('2.1', tag='2.1')
|
git='https://bitbucket.org/scheres/relion-3.0_beta.git')
|
||||||
|
version('2.1', preferred='true', tag='2.1')
|
||||||
version('2.0.3', tag='2.0.3')
|
version('2.0.3', tag='2.0.3')
|
||||||
|
# relion has no develop branch though pulling from master
|
||||||
|
# should be considered the same as develop
|
||||||
|
version('develop', branch='master')
|
||||||
|
|
||||||
variant('gui', default=True, description="build the gui")
|
variant('gui', default=True, description="build the gui")
|
||||||
variant('cuda', default=True, description="enable compute on gpu")
|
variant('cuda', default=True, description="enable compute on gpu")
|
||||||
variant('double', default=True, description="double precision (cpu) code")
|
variant('double', default=True, description="double precision (cpu) code")
|
||||||
variant('double-gpu', default=False, description="double precision (gpu) code")
|
variant('double-gpu', default=False, description="double precision gpu")
|
||||||
|
# if built with purpose=cluster then relion will link to gpfs libraries
|
||||||
|
# if that's not desirable then use purpose=desktop
|
||||||
|
variant('purpose', default='cluster', values=('cluster', 'desktop'),
|
||||||
|
description="build relion for use in cluster or desktop")
|
||||||
variant('build_type', default='RelWithDebInfo',
|
variant('build_type', default='RelWithDebInfo',
|
||||||
description='The build type to build',
|
description='The build type to build',
|
||||||
values=('Debug', 'Release', 'RelWithDebInfo',
|
values=('Debug', 'Release', 'RelWithDebInfo',
|
||||||
'Profiling', 'Benchmarking'))
|
'Profiling', 'Benchmarking'))
|
||||||
|
|
||||||
depends_on('mpi')
|
depends_on('mpi')
|
||||||
|
# relion will not build with newer versions of cmake
|
||||||
|
# per https://github.com/3dem/relion/issues/380
|
||||||
|
depends_on('cmake@3:3.9.4', type='build')
|
||||||
depends_on('fftw+float+double')
|
depends_on('fftw+float+double')
|
||||||
depends_on('fltk', when='+gui')
|
depends_on('fltk', when='+gui')
|
||||||
# cuda 9 not yet supported
|
depends_on('libtiff')
|
||||||
# https://github.com/3dem/relion/issues/296
|
|
||||||
depends_on('cuda@8.0:8.99', when='+cuda')
|
# relion 3 supports cuda 9
|
||||||
# use gcc < 5 when compiled with cuda 8
|
# relion < 3 does not
|
||||||
conflicts('%gcc@5:', when='+cuda')
|
depends_on('cuda', when='+cuda')
|
||||||
|
depends_on('cuda@9:', when='@3: +cuda')
|
||||||
|
depends_on('cuda@8.0:8.99', when='@:2 +cuda')
|
||||||
|
|
||||||
def cmake_args(self):
|
def cmake_args(self):
|
||||||
|
|
||||||
|
carch = self.spec.variants['cuda_arch'].value[0]
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
'-DCMAKE_C_FLAGS=-g',
|
'-DCMAKE_C_FLAGS=-g',
|
||||||
'-DCMAKE_CXX_FLAGS=-g',
|
'-DCMAKE_CXX_FLAGS=-g',
|
||||||
|
@ -65,14 +81,17 @@ def cmake_args(self):
|
||||||
'-DDoublePrec_GPU=%s' % ('+double-gpu' in self.spec),
|
'-DDoublePrec_GPU=%s' % ('+double-gpu' in self.spec),
|
||||||
]
|
]
|
||||||
|
|
||||||
carch = self.spec.variants['cuda_arch'].value
|
|
||||||
|
|
||||||
if '+cuda' in self.spec:
|
if '+cuda' in self.spec:
|
||||||
args += [
|
# relion+cuda requires selecting cuda_arch
|
||||||
'-DCUDA=on',
|
if not carch:
|
||||||
]
|
raise ValueError("select cuda_arch when building with +cuda")
|
||||||
if carch is not None:
|
else:
|
||||||
args += [
|
args += ['-DCUDA=ON', '-DCudaTexture=ON',
|
||||||
'-DCUDA_ARCH=%s' % (carch),
|
'-DCUDA_ARCH=%s' % (carch)]
|
||||||
]
|
|
||||||
|
# these new values were added in relion 3
|
||||||
|
# do not seem to cause problems with < 3
|
||||||
|
else:
|
||||||
|
args += ['-DMKLFFT=ON', '-DFORCE_OWN_TBB=ON', '-DALTCPU=ON']
|
||||||
|
|
||||||
return args
|
return args
|
||||||
|
|
Loading…
Reference in a new issue