<div dir="ltr">yup Justin, i did it and it is working now,thanks for ur help.:)</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Jul 13, 2013 at 1:49 AM,  <span dir="ltr"><<a href="mailto:swift-user-request@ci.uchicago.edu" target="_blank">swift-user-request@ci.uchicago.edu</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send Swift-user mailing list submissions to<br>
        <a href="mailto:swift-user@ci.uchicago.edu">swift-user@ci.uchicago.edu</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="https://lists.ci.uchicago.edu/cgi-bin/mailman/listinfo/swift-user" target="_blank">https://lists.ci.uchicago.edu/cgi-bin/mailman/listinfo/swift-user</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:swift-user-request@ci.uchicago.edu">swift-user-request@ci.uchicago.edu</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:swift-user-owner@ci.uchicago.edu">swift-user-owner@ci.uchicago.edu</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of Swift-user digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Re: locally running parallel code (Justin M Wozniak)<br>
   2. Re: locally running parallel code (Michael Wilde)<br>
   3. Need help with Integer cannot be cast to String (Andrew Shewmaker)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 04 Jul 2013 09:25:37 -0500<br>
From: Justin M Wozniak <<a href="mailto:wozniak@mcs.anl.gov">wozniak@mcs.anl.gov</a>><br>
Subject: Re: [Swift-user] locally running parallel code<br>
To: Nikhil Raj <<a href="mailto:nkrjnishu01@gmail.com">nkrjnishu01@gmail.com</a>><br>
Cc: <a href="mailto:swift-user@ci.uchicago.edu">swift-user@ci.uchicago.edu</a><br>
Message-ID: <<a href="mailto:51D585E1.4080304@mcs.anl.gov">51D585E1.4080304@mcs.anl.gov</a>><br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Hi Nikhil<br>
     Did you try modifying jobThrottle?<br>
     Justin<br>
<br>
On 7/4/2013 3:50 AM, Nikhil Raj wrote:<br>
><br>
> hi,<br>
>    this is nikhil and i am using swift for running a program. The<br>
> problem i want to calculate the solution parallely using local<br>
> multiple processor,but when i give the<br>
>    command it is just taking each problem at a time and not<br>
> parallely.I have a multi core processor and i want each cpu solving<br>
> diffrent problem at the same time<br>
>    but it is just using one of them and calculating one by one.pls<br>
> help me out asap.<br>
><br>
><br>
>   my program<br>
><br>
> type messagefile;<br>
><br>
> app (messagefile t) solve_instance(string fname) {<br>
>       bnb fname stdout=@filename(t);<br>
> }<br>
> string name ="b.txt c.txt";<br>
> messagefile fi[]<fixed_array_mapper;files=name>;<br>
> string<br>
> prob[]=["/home/nikhil/BatchS121208M.nl","/home/nikhil/BatchS151208M.nl"];<br>
> foreach f in prob{<br>
> messagefile c<regexp_mapper;<br>
> source=@f,<br>
> match="(.*)nl",<br>
> transform="\\1txt">;<br>
> c=solve_instance(f);<br>
> }<br>
><br>
> bnb is a slover i am using to solve the problem."BatchS121208M.nl" is<br>
> the problem file name.<br>
> I am attaching various log files and also the files which i think may<br>
> be problem because of which my code is not running properly.<br>
> look inti sites.xml may be there is some prob<br>
><br>
><br>
><br>
> _______________________________________________<br>
> Swift-user mailing list<br>
> <a href="mailto:Swift-user@ci.uchicago.edu">Swift-user@ci.uchicago.edu</a><br>
> <a href="https://lists.ci.uchicago.edu/cgi-bin/mailman/listinfo/swift-user" target="_blank">https://lists.ci.uchicago.edu/cgi-bin/mailman/listinfo/swift-user</a><br>
<br>
<br>
--<br>
Justin M Wozniak<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Thu, 4 Jul 2013 09:31:14 -0500 (CDT)<br>
From: Michael Wilde <<a href="mailto:wilde@mcs.anl.gov">wilde@mcs.anl.gov</a>><br>
Subject: Re: [Swift-user] locally running parallel code<br>
To: Nikhil Raj <<a href="mailto:nkrjnishu01@gmail.com">nkrjnishu01@gmail.com</a>><br>
Cc: <a href="mailto:swift-user@ci.uchicago.edu">swift-user@ci.uchicago.edu</a><br>
Message-ID:<br>
        <<a href="mailto:924997554.7660571.1372948274885.JavaMail.root@mcs.anl.gov">924997554.7660571.1372948274885.JavaMail.root@mcs.anl.gov</a>><br>
Content-Type: text/plain; charset=utf-8<br>
<br>
Nikhil, the problem is most likely the jobThrottle value in your sites.xml file.<br>
<br>
The default sites file entry for pool "localhost" specifies jobThrottle=0 :<br>
<br>
    <profile namespace="karajan" key="jobThrottle">0</profile><br>
<br>
Copy the sites file from your swift/ release directory (e.g. swift-0.94/etc) to the directory in which you are running swift, and replace the line above with these two lines:<br>
<br>
    <profile namespace="karajan" key="jobThrottle">.07</profile><br>
    <profile namespace="karajan" key="initialScore">10000</profile><br>
<br>
The run swift with the -sites.file option specifying  your local copy of sites:<br>
<br>
  swift -sites.file sites.xml myscript.swift # etc<br>
<br>
The max number of jobs that Swift will send to each site (each "pool" in the sites file) is<br>
(jobThrottle + 1) * 100. This is explained in the User Guide section that explains Swift properties.<br>
<br>
So the value above of .07 will allow up to 8 jobs at a time to be sent to the pool. If you want to run 16 jobs at one, use .15, 32 jobs at once, use .31, etc.<br>
<br>
The reason for this odd convention is historical: Swift originally was developed to send jobs to grid sites where the optimal number of jobs to send had to be discovered dynamically. The initialScore value of 10000 essentially disables this outdated algorithm and lets you set the number of concurrent jobs directly via jobThrottle.  This will be made simpler and more clear in a future release of Swift.<br>

<br>
- Mike<br>
<br>
----- Original Message -----<br>
> From: "Nikhil Raj" <<a href="mailto:nkrjnishu01@gmail.com">nkrjnishu01@gmail.com</a>><br>
> To: <a href="mailto:swift-user@ci.uchicago.edu">swift-user@ci.uchicago.edu</a><br>
> Sent: Thursday, July 4, 2013 3:50:06 AM<br>
> Subject: [Swift-user] locally running parallel code<br>
><br>
><br>
><br>
><br>
><br>
> hi,<br>
> this is nikhil and i am using swift for running a program. The<br>
> problem i want to calculate the solution parallely using local<br>
> multiple processor,but when i give the<br>
> command it is just taking each problem at a time and not parallely.I<br>
> have a multi core processor and i want each cpu solving diffrent<br>
> problem at the same time<br>
> but it is just using one of them and calculating one by one.pls help<br>
> me out asap.<br>
><br>
><br>
><br>
> my program<br>
><br>
><br>
> type messagefile;<br>
><br>
> app (messagefile t) solve_instance(string fname) {<br>
> bnb fname stdout=@filename(t);<br>
> }<br>
> string name ="b.txt c.txt";<br>
> messagefile fi[]<fixed_array_mapper;files=name>;<br>
> string<br>
> prob[]=["/home/nikhil/BatchS121208M.nl","/home/nikhil/BatchS151208M.nl"];<br>
> foreach f in prob{<br>
> messagefile c<regexp_mapper;<br>
> source=@f,<br>
> match="(.*)nl",<br>
> transform="\\1txt">;<br>
> c=solve_instance(f);<br>
> }<br>
><br>
> bnb is a slover i am using to solve the problem."BatchS121208M.nl" is<br>
> the problem file name.<br>
> I am attaching various log files and also the files which i think may<br>
> be problem because of which my code is not running properly.<br>
> look inti sites.xml may be there is some prob<br>
> _______________________________________________<br>
> Swift-user mailing list<br>
> <a href="mailto:Swift-user@ci.uchicago.edu">Swift-user@ci.uchicago.edu</a><br>
> <a href="https://lists.ci.uchicago.edu/cgi-bin/mailman/listinfo/swift-user" target="_blank">https://lists.ci.uchicago.edu/cgi-bin/mailman/listinfo/swift-user</a><br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Fri, 12 Jul 2013 14:18:36 -0600<br>
From: Andrew Shewmaker <<a href="mailto:agshew@gmail.com">agshew@gmail.com</a>><br>
Subject: [Swift-user] Need help with Integer cannot be cast to String<br>
To: <a href="mailto:swift-user@ci.uchicago.edu">swift-user@ci.uchicago.edu</a><br>
Message-ID:<br>
        <CAF-E8XHepZ359V3y_B2DGZaEzgJ03X5J+MjcQhpo8=<a href="mailto:uZmTXqaA@mail.gmail.com">uZmTXqaA@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
Hi,<br>
<br>
I'm learning how use Swift, and I'm trying to understand what I'm doing<br>
wrong that's causing this failure:<br>
<br>
java.lang.ClassCastException: java.lang.Integer cannot be cast to<br>
java.lang.String<br>
<br>
on line 78 of the attached usecase1.swift<br>
<br>
I don't think I'm trying to use an Integer in the line that's mentioned.<br>
Any help would be appreciated!<br>
<br>
Thanks,<br>
<br>
Andrew Shewmaker<br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: swiftdemo.tgz<br>
Type: application/x-gzip<br>
Size: 28103 bytes<br>
Desc: not available<br>
Url : <a href="http://lists.ci.uchicago.edu/pipermail/swift-user/attachments/20130712/7fba0a5f/attachment.bin" target="_blank">http://lists.ci.uchicago.edu/pipermail/swift-user/attachments/20130712/7fba0a5f/attachment.bin</a><br>

<br>
------------------------------<br>
<br>
_______________________________________________<br>
Swift-user mailing list<br>
<a href="mailto:Swift-user@ci.uchicago.edu">Swift-user@ci.uchicago.edu</a><br>
<a href="https://lists.ci.uchicago.edu/cgi-bin/mailman/listinfo/swift-user" target="_blank">https://lists.ci.uchicago.edu/cgi-bin/mailman/listinfo/swift-user</a><br>
<br>
End of Swift-user Digest, Vol 74, Issue 3<br>
*****************************************<br>
</blockquote></div><br></div>