# # Collective Knowledge (individual environment - setup) # # See CK LICENSE.txt for licensing details # See CK COPYRIGHT.txt for copyright details # # Developer: Grigori Fursin, Grigori.Fursin@cTuning.org, http://fursin.net # import os ############################################################################## # parse software version def parse_version(i): lst=i['output'] hosd=i.get('host_os_dict',{}) hplat=hosd.get('ck_name','') ver='' for q in lst: q=q.strip() if q!='': if hplat=='win': j=q.lower().find(' version ') if j>=0: q=q[j+10:] j=q.find(' ') if j>=0: ver=q[:j] break else: j=q.lower().find(') ') if j>=0: ver=q[j+2:] j=ver.find(' ') if j>=0: ver=ver[:j] break return {'return':0, 'version':ver} ############################################################################## # setup environment setup def setup(i): """ Input: { cfg - meta of this soft entry self_cfg - meta of module soft ck_kernel - import CK kernel module (to reuse functions) host_os_uoa - host OS UOA host_os_uid - host OS UID host_os_dict - host OS meta target_os_uoa - target OS UOA target_os_uid - target OS UID target_os_dict - target OS meta target_device_id - target device ID (if via ADB) tags - list of tags used to search this entry env - updated environment vars from meta customize - updated customize vars from meta deps - resolved dependencies for this soft interactive - if 'yes', can ask questions, otherwise quiet } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 bat - prepared string for bat file } """ # Get variables ck=i['ck_kernel'] s='' iv=i.get('interactive','') cus=i.get('customize',{}) fp=cus.get('full_path','') hosd=i['host_os_dict'] tosd=i['target_os_dict'] # Check platform hplat=hosd.get('ck_name','') ttags=tosd.get('tags',[]) win=tosd.get('windows_base','') mingw=tosd.get('mingw','') hproc=hosd.get('processor','') tproc=tosd.get('processor','') remote=tosd.get('remote','') tbits=tosd.get('bits','') env=i['env'] ep=cus['env_prefix'] # Bin and root dir fp=os.path.realpath(fp) pb=os.path.dirname(fp) if not os.path.isdir(pb): pbx=os.path.dirname(pb) pb=os.path.join(pbx,'bin') if not os.path.isdir(pb): return {'return':1, 'error':'can\'t find bin directory'} # Check mpivars.sh pv='mpivars.' if win=='yes': pv+='bat' else: pv+='sh' pvars=os.path.join(pb,pv) if os.path.isfile(pvars): ck.out('') ck.out('File with vars found: '+pvars) ck.out('') if win=='yes': ############################################################ s+='\n' s+='rem Setting Intel MPI environment\n' s+='call "'+pvars+'"\n\n' else: ################################################################ s+='\n' s+='# Setting Intel MPI environment\n' s+='. "'+pvars+'"\n\n' # s+='. "'+pvars+'" -ofi_internal=1\n\n' p2=os.path.dirname(pb) env[ep]=p2 # Include dir pi=os.path.join(p2,'include') if not os.path.isdir(pi): return {'return':1, 'error':'can\'t find include directory'} # Lib dir pl=os.path.join(p2,'lib') if not os.path.isdir(pl): return {'return':1, 'error':'can\'t find lib directory'} cus['path_include']=pi cus['path_lib']=pl cus['path_bin']=pb # Check different compilers for q in [{'file':'mpiicc', 'var':'_CC'}, {'file':'mpiicpc', 'var':'_CXX'}, {'file':'mpiifort', 'var':'_FC'}, {'file':'mpirun', 'var':'_RUN'}, {'file':'mpitune', 'var':'_TUNE'}]: bfile=q['file'] if win=='yes': bfile+='.exe' xbfile=os.path.join(pb, bfile) if os.path.isfile(xbfile): env['CK_ENV_LIB_MPI'+q['var']] = bfile env['CK_ENV_LIB_MPI'+q['var']+'_FULL'] = xbfile # Prepare library paths r = ck.access({'action': 'lib_path_export_script', 'module_uoa': 'os', 'host_os_dict': hosd, 'lib_path': cus.get('path_lib','')}) if r['return']>0: return r s += r['script'] return {'return':0, 'bat':s}