Skip to content
Snippets Groups Projects
Commit a9ea6bc1 authored by Cristian Galperti's avatar Cristian Galperti
Browse files

environmental setup files added

parent 427e32b1
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
source scdds_env.sh
LIBGL_ALWAYS_SOFTWARE=1 /usr/local/MATLAB/R2019a/bin/matlab -c /etc/network.lic -nodesktop -softwareopengl -nosplash -r 'scdds_core_paths;'
...@@ -28,6 +28,10 @@ scdds_core_folder = fileparts(mfilename('fullpath')); % folder containing this s ...@@ -28,6 +28,10 @@ scdds_core_folder = fileparts(mfilename('fullpath')); % folder containing this s
addpath(genpath(fullfile(scdds_core_folder,'classes'))); addpath(genpath(fullfile(scdds_core_folder,'classes')));
addpath(genpath(fullfile(scdds_core_folder,'functions'))); addpath(genpath(fullfile(scdds_core_folder,'functions')));
addpath(genpath(fullfile(scdds_core_folder,'configurations'))); addpath(genpath(fullfile(scdds_core_folder,'configurations')));
addpath(genpath(fullfile(scdds_core_folder,'codegen')));
% Algos path
addpath(genpath(fullfile(scdds_core_folder,'algos')));
% set code generation and cache file location % set code generation and cache file location
fprintf('setting Simulink Cache and CodeGen folders for SCDDS\n') fprintf('setting Simulink Cache and CodeGen folders for SCDDS\n')
......
#!/bin/bash
if [[ "$(hostname)" == "spcpc478.epfl.ch" ]] || [[ "$(hostname)" == "crpppc171" ]]
then
echo "Setting up icc"
source setup_icc
fi
echo "Defining environment variables"
declare -x SCDDS_PATH=$(pwd)
echo SCDDS_PATH=$SCDDS_PATH
if [[ "$(uname -s)" == "linux" ]] && [[ -z $MATLAB ]]
then
declare -x MATLAB=/usr/local/MATLAB/R2019a
echo MATLAB=$MATLAB
else
echo MATLAB=$MATLAB
echo please check or declare MATLAB environment variable before compiling meq/genlib
fi
#2018
#declare -x INTEL_LICENSE_FILE=/opt/intel2018/license
#source /opt/intel2018/compilers_and_libraries/linux/bin/compilervars.sh intel64
#2021
source /opt/intel/oneapi/compiler/2021.1.1/env/vars.sh
source /opt/intel/oneapi/mkl/2021.1.1/env/vars.sh
echo "current icc version: $(icc --version)"
#echo "Note that icc command now has become icx"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment