- Timestamp:
- Apr 25, 2024, 3:00:36 PM (8 months ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/call_command_clean.m
r1136 r1138 8 8 clean_ld_lib_path = strjoin(new_paths, ':'); 9 9 10 [status, result] = system([' LD_LIBRARY_PATH=' clean_ld_lib_path ' ' command], '-echo');10 [status, result] = system(['OMP_NUM_THREADS=1 LD_LIBRARY_PATH=' clean_ld_lib_path ' ' command], '-echo'); 11 11 end -
trunk/src/series.m
r1136 r1138 160 160 % % [code, ~] = system(command); 161 161 % % if code==0 162 ActionExtList={'.m';'.sh';' .py (in dev.)'}; % default choice of extensions (Matlab fct .m or compiled version .sh162 ActionExtList={'.m';'.sh';'fluidimage'}; % default choice of extensions (Matlab fct .m or compiled version .sh 163 163 % % else 164 164 % % ActionExtList={'.m';'.sh'}; % python options not installed … … 1492 1492 ActionExt='.m'; % default 1493 1493 if isfield(Param.Action,'ActionExt') 1494 ActionExt=Param.Action.ActionExt; % '.m', '.sh' (compiled) or ' .py' (Python)1494 ActionExt=Param.Action.ActionExt; % '.m', '.sh' (compiled) or 'fluidimage' (Python) 1495 1495 Param.Action=rmfield(Param.Action,'ActionExt'); % remove from the recorded xml file to avoid interference during ImportConfig 1496 1496 end … … 1938 1938 1939 1939 %% case of a function in Python 1940 if strcmp(ActionExt, ' .py (in dev.)')1940 if strcmp(ActionExt, 'fluidimage') 1941 1941 fprintf([ 1942 1942 '\n' ... 1943 1943 '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n' ... 1944 'The option .py is used. It is still in development.\n' ...1945 ' To try it, first install pyper and the most recent version of fluidimage\n' ...1946 ' (see https://bitbucket.org/fluiddyn/fluidimage).\n' ...1947 ' Warning: there is no direct correspondance between UVMAT and fluidimage parameters\n' ...1944 'The computation should be done by fluidimage (https://fluidimage.readthedocs.io).\n' ... 1945 'Warning: Fluidimage parameters will be guessed from UVmat parameters but \n' ... 1946 'there is no direct correspondance between UVMAT and fluidimage parameters.\n' ... 1947 'Please report issues here https://foss.heptapod.net/fluiddyn/fluidimage/-/issues\n' ... 1948 1948 '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n']) 1949 1949 RunMode = 'python'; … … 3721 3721 ActionExtList=get(handles.ActionExt,'String'); 3722 3722 ActionExt=ActionExtList{get(handles.ActionExt,'Value')}; 3723 if strcmp(ActionExt,' .py (in dev.)')3723 if strcmp(ActionExt,'fluidimage') 3724 3724 set(handles.RunMode,'Value',2) 3725 3725 end
Note: See TracChangeset
for help on using the changeset viewer.