path_laptop_EMELIE_NILSSON

PURPOSE ^

SYNOPSIS ^

function dkepath = path_laptop_EMELIE_NILSSON

DESCRIPTION ^

 path definitions for macbook pro 2011 (Core i5 Intel) of Emelie Nilsson

    Output:

       - dkepath: path structure

   Warning: none

 By Yves Peysson (CEA/DSM/IRFM, yves.peysson@cea.fr) and Joan Decker (CEA/DSM/IRFM, joan.decker@cea.fr)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function dkepath = path_laptop_EMELIE_NILSSON
0002 %
0003 % path definitions for macbook pro 2011 (Core i5 Intel) of Emelie Nilsson
0004 %
0005 %    Output:
0006 %
0007 %       - dkepath: path structure
0008 %
0009 %   Warning: none
0010 %
0011 % By Yves Peysson (CEA/DSM/IRFM, yves.peysson@cea.fr) and Joan Decker (CEA/DSM/IRFM, joan.decker@cea.fr)
0012 %
0013 dkepath.machine = 'macbookemelie';
0014 dkepath.hostname = 'macbookemelie';
0015 dkepath.computer = computer;%machine type and supported OS
0016 %
0017 % Selected user profile for unlisted users
0018 %
0019 dkepath.default = 'emenil';
0020 %
0021 %--------------------------------------------------------------------------------------------------------
0022 %------------------------------------ Profile number 1, Yves Peysson ------------------------------------
0023 %--------------------------------------------------------------------------------------------------------
0024 %
0025 dkepath.emenil(1).luke_root = [pwd,filesep];
0026 dkepath.emenil(1).local_root = [getenv('HOME'),'/CEA/'];
0027 dkepath.emenil(1).temppathroot = '/tmp/';%Absolute root directory path adress where temporary matrices are stored (empty: local directory)
0028 %
0029 dkepath.emenil(1).mex801 = [dkepath.emenil(1).luke_root,'Project_DKE/MEX/Bin/macbookemelie/MATLAB801','/'];
0030 %
0031 dkepath.emenil(1).compiler_opt.libs.gfortran = [dkepath.emenil(1).luke_root,'Project_DKE/MEX/Libs/gfortran/4.9.0','/',dkepath.machine,'/'];%extra libraries
0032 dkepath.emenil(1).compiler_opt.libs.ifort = [dkepath.emenil(1).luke_root,'Project_DKE/MEX/Libs/ifort/13.0.0','/',dkepath.machine,'/'];
0033 dkepath.emenil(1).compiler_opt.copts = '';
0034 dkepath.emenil(1).compiler_opt.fopts.mex801 = ' ';%-largeArrayDims';
0035 dkepath.emenil(1).compiler_opt.separatrice.mex801 = [' -largeArrayDims /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/Versions/Current/libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/Versions/Current/libLAPACK.dylib ',dkepath.emenil(1).compiler_opt.libs.gfortran,'libgfortran.a ',dkepath.emenil(1).compiler_opt.libs.gfortran,'libgcc_s_1.dylib ',dkepath.emenil(1).compiler_opt.libs.gfortran,'libgfortranbegin.a ',dkepath.emenil(1).compiler_opt.libs.gfortran,'libquadmath.a '];% -largeArrayDims does not work for helmex77.F but OK for separatrice.F
0036 dkepath.emenil(1).compiler_opt.helmex.mex801 = [' -compatibleArrayDims /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/Versions/Current/libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/Versions/Current/libLAPACK.dylib  ',dkepath.emenil(1).compiler_opt.libs.gfortran,'libgfortran.a ',dkepath.emenil(1).compiler_opt.libs.gfortran,'libgcc_s_1.dylib ',dkepath.emenil(1).compiler_opt.libs.gfortran,'libgfortranbegin.a ',dkepath.emenil(1).compiler_opt.libs.gfortran,'libquadmath.a '];% -largeArrayDims does not work for helmex77.F but OK for separatrice.F
0037 %
0038 % MUMPS matrix solver (parallel, sequential, mex)
0039 %
0040 dkepath.emenil(1).MUMPS.seq = [dkepath.emenil(1).local_root,'Packages/Bin/MUMPS/MUMPS_4.10.0_S_ifort/dke'];%Where MUMPS matrix solver is stored  (stand-alone application for sequential processing)
0041 dkepath.emenil(1).MUMPS.mex801 = [dkepath.emenil(1).local_root,'Packages/Bin/MUMPS/MUMPS_4.10.0_S_ifort/MATLAB801'];%Where MUMPS matrix solver is stored (MEX function)
0042 %
0043 %--------------------------- Access to the experimental databases -----------------------------
0044 %
0045 % Tore Supra (TSBase)
0046 %
0047 dkepath.emenil(1).TSBASE.mex = [dkepath.emenil(1).luke_root,'Project_DKE/Database/EXTERNAL_files/TSBase'];%Where tsbase, tsmat and tsdernier_choc functions are stored (MEX function)
0048 %
0049 % LUKE documentation
0050 %
0051 dkepath.emenil(1).graphviz.env = '/usr/local/bin/';% Graphviz environment variable
0052 dkepath.emenil(1).latex.env = '/usr/texbin/';% Latex environment variable
0053 dkepath.emenil(1).imagemagick.env = '/usr/local/bin/';% ImageMagick environment variable
0054 %
0055 %--------------------------- Remote computing -----------------------------
0056 %
0057 % for profilename, use 'local' to select profile from user name on client machine (or default if unknown)
0058 %
0059 dkepath.emenil(1).remote(1).remoteid = 'CEA_ANDROMEDE';
0060 dkepath.emenil(1).remote(1).schedulername = 'pbs';
0061 dkepath.emenil(1).remote(1).profilename = 'EN290612';
0062 dkepath.emenil(1).remote(1).luke_root = '/home/EN290612/LUKE/';
0063 dkepath.emenil(1).remote(1).link_mode = [];
0064 dkepath.emenil(1).remote(1).cvsupdate = false;% update done in 'direct' mode
0065 %
0066 dkepath.emenil(1).remote(2) = dkepath.emenil(1).remote(1);
0067 dkepath.emenil(1).remote(2).schedulername = 'direct';
0068 dkepath.emenil(1).remote(2).cvsupdate = true;% update done in 'direct' mode
0069 dkepath.emenil(1).remote(2).cvsrights = 'chmod -R a+rx ./';
0070 %
0071 
0072

Community support and wiki are available on Redmine. Last update: 18-Apr-2019.