Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Mansi's profile - activity

2023-03-14 04:55:54 -0500 received badge  Taxonomist
2015-04-21 05:12:14 -0500 commented question How to run Genopt on multiple cores in a cluster?

I have 2 nodes and each one has 12 cores. I set unitsOfExecution=24. GenOpt starts running and writes: Assigning 24 threads for simulations.

However, when I check the nodes, it seems just the first node is used. How can I fix that? Thanks in advance.

2015-04-21 05:12:02 -0500 commented answer How to run Genopt on multiple cores in a cluster?

@scottb I have 2 nodes and each one has 12 cores. I set unitsOfExecution=24. GenOpt starts running and writes: Assigning 24 threads for simulations.

However, when I check the nodes, it seems just the first node is used. How can I fix that? Thanks in advance.

2015-04-21 02:34:21 -0500 answered a question How to run Genopt on multiple cores in a cluster?

I have 2 nodes and each one has 12 cores. I set unitsOfExecution=24. GenOpt starts running and writes: Assigning 24 threads for simulations.

However, when I check the nodes, it seems just the first node is used. How can I fix that? Thanks in advance.

2014-11-19 10:55:31 -0500 asked a question How to run Genopt on multiple cores in a cluster?

How to run Genopt on multiple cores in a cluster with torque scheduler (i.e. using the qsub command)

2014-11-18 10:32:28 -0500 received badge  Teacher (source)
2014-11-18 03:24:27 -0500 commented answer Running GenOpt in Linux Server

One more question: how to run genopt on multiple cores in a cluster with torque scheduler (i.e. using the qsub command)? Thanks for your help.

2014-11-17 04:54:09 -0500 answered a question Running GenOpt in Linux Server

The problem solved. I wrote a job script and run Matlab from that. The issue was transferring the path to Matlab.
The job script is like this:

#!/bin/sh

#rm -r tmp-runtimes
#mkdir tmp-runtimes

cd (the path of matlab script)

INPUT=$1
echo "$INPUT" > script_log.out

NNNN="decoder_5spot('"${INPUT}"');exit;"
echo "$NNNN" >> script_log.out

# time -o time.out 
matlab -nodisplay -nosplash -nodesktop -r $NNNN
2014-11-11 11:29:49 -0500 received badge  Editor (source)
2014-11-11 11:27:58 -0500 asked a question Running GenOpt in Linux Server

Hi Again,

I would like to run GenOpt in our server. The simulator is Matlab. I can run it without any problem in PC with the command line in the configuration file like below:

Command = "cmd /c \"\"C:\\Program Files\\MATLAB\\R2012a\\bin\\\"matlab -wait -nodisplay -nosplash -nodesktop  -r \"addpath('C:\\Users\\jesmanim\\Documents\\genopt\\example\\quad\\5_spot_1producer');decoder_5spot %Simulation.Files.Log.Path1%;exit\"\"";

However, when I run it in the server with the command line:

Command ="matlab -nodisplay -nosplash -nodesktop -r \"addpath('/home/jesmanim/ code/genopt/example/quad/5spot');decoder5spot(%Simulation.Files.Log.Path1);exi t;\"";

It seems GenOpt is waiting for Matlab and nothing works there. Is there any idea?

2014-11-07 03:31:53 -0500 received badge  Supporter (source)
2014-11-06 09:22:17 -0500 received badge  Student (source)
2014-11-06 08:42:31 -0500 asked a question running GenOpt without GUI

I want to use GenOpt in parallel, but we cannot open any GUI in our server. Is there any way to run GenOpt without opening GUI? and just get the text output?