ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
clstypes.m
Go to the documentation of this file.
1%> \brief
2%> Return a list of MATLAB strings containing the names of
3%> all supported compiler suites (vendor names) used for
4%> building the ParaMonte MATLAB shared libraries.
5%>
6%> \return
7%> ``typelist`` : The output MATLAB string list containing the value ``["intel", "gnu"]``.
8%>
9%> \interface{clstypes}
10%> \code{.m}
11%>
12%> typelist = pm.lib.clstypes();
13%>
14%> \endcode
15%>
16%> \devnote
17%> The CS names within this function must be
18%> regularly updated with the latest CS names
19%> available in the ParaMonte installation guide.<br>
20%>
21%> \example{clstypes}
22%> \include{lineno} example/lib/clstypes/main.m
23%> \output{clstypes}
24%> \include{lineno} example/lib/clstypes/main.out.m
25%>
26%> \final{clstypes}
27%>
28%> \author
29%> \JoshuaOsborne, May 21 2024, 8:07 PM, University of Texas at Arlington<br>
30%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
31%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
32function typelist = clstypes()
33 typelist = ["intel", "gnu"];
34end
function list()
Return a list of MATLAB strings containing the names of OS platforms supported by the ParaMonte MATLA...
function clstypes()
Return a list of MATLAB strings containing the names of all supported compiler suites (vendor names) ...
function compiler()
Return a scalar MATLAB logical that is true if and only if the current installation of MATLAB contain...
function lib()
Return a scalar MATLAB string containing the path to the lib directory of the ParaMonte library packa...
function vendor(in path)
Return the a MATLAB string containing the MPI library vendor name corresponding to the input mpiexec ...