Subversion Repositories slepc-dev

Compare Revisions

Regard whitespace Rev 1187 → Rev 1188

/trunk/config/primme.py
13,7 → 13,7
sys.exit('ERROR: PRIMME does not support single precision.')
if not directory:
sys.exit('ERROR: I cannot guess where is PRIMME directory.')
sys.exit('ERROR: I cannot guess where the PRIMME directory is.')
 
functions = ['primme_set_method','primme_Free','primme_initialize']
if petscconf.SCALAR == 'real':
37,4 → 37,4
sys.exit('ERROR: PRIMME link test failed.')
return flags + libs
/trunk/config/configure.py
112,8 → 112,8
print ' --with-trlan-dir=<dir> : Indicate the directory for TRLAN libraries'
print ' --with-trlan-flags=<flags> : Indicate comma-separated flags for linking TRLAN'
print 'PRIMME:'
print ' --with-primme : Indicate if you wish to test for PRIMME'
print ' --with-primme-dir=<dir> : Indicate the directory for PRIMME libraries'
print ' --with-primme : Indicate if you wish to test for PRIMME'
sys.exit(0)
else:
sys.exit('ERROR: Invalid argument ' + i +' use -h for help')
134,8 → 134,8
 
# Check some information about PETSc configuration
petscconf.Load(petscdir)
if petscconf.VERSION != '2.3.1':
sys.exit('ERROR: This SLEPc version is not compatible with PETSc version '+petscconf.VERSION)
#if petscconf.VERSION != '2.3.1':
# sys.exit('ERROR: This SLEPc version is not compatible with PETSc version '+petscconf.VERSION)
if not petscconf.PRECISION in ['double','single','matsingle']:
sys.exit('ERROR: This SLEPc version does not work with '+petscconf.PRECISION+' precision')