Changes

Jump to navigation Jump to search
no edit summary
{{Project|Has project output=Tool,How-to|Has sponsor=McNair ProjectsCenter
|Has title=NOTS Computing for Matching Entrepreneurs to VCs
|Has owner=Wei Wu,
|Has image=NOTS.png
}}
In progress. Building When in doubt, consult the full documentation fromby CRC: https://docs.rice.edu/confluence/display/CD/Getting+Started+on+NOTS
=Synopsis=
Summer 2018. We try to use NOTS ([https://docs.rice.edu/confluence/display/CD/Getting+Started+on+NOTS Night Owls Time-Sharing Service]), a computing cluster of Rice's CRC (Center for Research Computing) to run the Matlab code for Matching Entrepreneurs to VCs. This is a documentation on how to use NOTS. Currently only Wei and Ed have access to NOTS.
UserKnownHostsFile /dev/null
LogLevel QUIET
 
==Import a cluster configuration on PCT==
Open Matlab:
matlab -nodisplay
 
This step only has to be performed once. Once imported, the profile will persist through multiple MATLAB runs. For each cluster the profile includes cluster settings for all available queues. The following commands, run on NOTS, will import the profiles and set Commons as the default:
configCluster
 
==Wall Time==
Specifying job time (walltime) is required before submitting a job via matlab and validating a cluster parallel profile. Here is an example, please be as accurate as possible to minimize your wait time.
For example, set the walltime for one day and one hour:
 
ClusterInfo.setWallTime('1-01:00:00')
 
==Optimal use of the Cluster Configuration==
For performance and file quota reasons, please have your workspace in $SHARED_SCRATCH/your-userid/. In order to do this, you must first create a workspace directory and then modify your cluster configuration to use the new workspace configuration. To change the location for your default profile you can run something like the following in MATLAB:
 
workdir = [getenv('SHARED_SCRATCH') filesep getenv('USER') filesep 'MdcsDataLocation'];
mkdir(workdir);
pc = parcluster;
set(pc, 'JobStorageLocation', workdir);
p.saveProfile;
=Submitting jobs through Matlab PCT=
https://docs.rice.edu/confluence/display/CD/MATLAB+Parallel+Computing+Toolbox+testing+on+the+Shared+Computing+Clusters

Navigation menu