# # Collective Knowledge (individual environment - setup) # # See CK LICENSE.txt for licensing details # See CK COPYRIGHT.txt for copyright details # # Developers: Grigori Fursin, Flavio Vella, Anton Lokhmotov # import os ############################################################################## # 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 } """ import os # 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'] sdirs=hosd.get('dir_sep','') # Check platform hplat=hosd.get('ck_name','') hproc=hosd.get('processor','') tproc=tosd.get('processor','') remote=tosd.get('remote','') tbits=tosd.get('bits','') env=i['env'] pi=os.path.dirname(fp) ep=cus.get('env_prefix','') env[ep]=pi weights_file = cus.get('file_with_weights','') if (weights_file != ''): env[ep+'_WEIGHTS'] = os.path.join(pi, weights_file) env[ep+'_WEIGHTS_FILE'] = weights_file mean_bin_file = cus.get('file_mean_bin','') if (mean_bin_file != ''): env[ep + '_MEAN_BIN'] = os.path.join(pi, mean_bin_file) env[ep + '_MEAN_BIN_FILE'] = mean_bin_file file_prototxt = cus.get('file_with_model','') if (file_prototxt !=''): env[ep + '_PROTOTXT'] = os.path.join(pi,file_prototxt) env[ep + '_PROTOTXT_FILE'] = file_prototxt labelmap_file = cus.get('file_with_labelmap','') if (labelmap_file != ''): env[ep + '_LABELMAP'] = os.path.join(pi, labelmap_file) env[ep + '_LABELMAP_FILE'] = labelmap_file model_name = cus.get('model_name','') if (model_name != ''): env[ep + '_MODEL_NAME'] = model_name # record params pff=cus['ck_params_file'] pf=os.path.join(pi, pff) params=cus.get('params',{}) # FIXME: use template name or generate file directly. resolutions=params['deploy']['resolution'] if len(resolutions) > 0: # FIXME: Is this check actually needed? for resolution in resolutions: res = str(resolution) env[ep + '_PROTOTXT_' + res] = os.path.join(pi, res + '-' + file_prototxt) env[ep + '_PROTOTXT_FILE_' + res] = res + '-' + file_prototxt # Make DeePhi model compatible with Caffe. cep='CK_ENV_MODEL_CAFFE' env[cep]=env[ep] env[cep+'_PROTOTXT']=env[ep+'_PROTOTXT'] env[cep+'_WEIGHTS']=env[ep+'_WEIGHTS'] env[cep+'_WEIGHTS_FILE']=env[ep+'_WEIGHTS_FILE'] # FIXME: Why need params? if len(params) == 0: if os.path.isfile(pf): r=ck.load_json_file({'json_file':pf}) if r['return']>0: return r cus['params']=r['dict'] else: return {'return':1, 'error':'CK params for the DNN are not defined and file '+pff+' doesn\'t exist'} else: r=ck.save_json_to_file({'json_file':pf, 'dict':params}) if r['return']>0: return r return {'return':0, 'bat':s}