User`s guide
1 Cloud Computing
1-20
Number Finished: 0
- MJSComputeCloud Specific Properties
Name: MyCluster
State: online
NumBusyWorkers: 0
NumIdleWorkers: 32
Now you can use the cluster object to create jobs and tasks in the usual manner. For
example:
parpool(c,8)
or
createJob(c)
Use Downloaded Profile for Cloud Cluster
As an alternative to fetchCloudClusters, you can use the a profile downloaded from
the Cloud Center to identify the cluster you want to access. (See “Download Cluster
Profile to Local Machine” on page 1-9.) For example, suppose you downloaded the profile
settings file to a file named C:\temp\MyCluster.settings. You can access and use
this profile programmatically with:
parallel.importProfile('C:\temp\MyProfile')
c = parcluster('MyProfile')
Then proceed to use this cluster for creating jobs or running parallel algorithms:
parpool(c,2)
or
createJob(c)