delorie.com/archives/browse.cgi | search |
X-Recipient: | archive-cygwin AT delorie DOT com |
DomainKey-Signature: | a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id |
:list-unsubscribe:list-subscribe:list-archive:list-post | |
:list-help:sender:message-id:date:from:mime-version:to:cc | |
:subject:references:in-reply-to:content-type; q=dns; s=default; b= | |
Uv4VDin2TLssiCPuyMvqypi00N8daAodKhrSGa+7fIAJzKTreKfigK0LkpMY3HUt | |
K7CPARBliY23n9BFLS2IxL58SEo4JtGpGhDY8bJ6vpIgIcQ3F3Yn4/JHU0V98qi3 | |
/ZhdWCtVcN9kq82mV5POou2a7B3h6063EMlQ6MqTMs4= | |
DKIM-Signature: | v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id |
:list-unsubscribe:list-subscribe:list-archive:list-post | |
:list-help:sender:message-id:date:from:mime-version:to:cc | |
:subject:references:in-reply-to:content-type; s=default; bh=567X | |
oW3PXeCSRnA4xHUHQYrS0kc=; b=qN1s1yBgUE4kqxSSiYTV050T8r8Qe6N1iiL1 | |
ifLbK1+Tm8vdtd6yt0VbZ6ZzL1bDJLI+dh4gN4QZfwsYdVHnu+4MWl3K4OswqF+Q | |
WxQp6doiRE9N/cGA+A7bmPJbBfte9mU49W4qe7tq+6sHS6+WXjVwCnOgMu5js04M | |
gdvpMxM= | |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Id: | <cygwin.cygwin.com> |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sourceware.org/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
Sender: | cygwin-owner AT cygwin DOT com |
Mail-Followup-To: | cygwin AT cygwin DOT com |
Delivered-To: | mailing list cygwin AT cygwin DOT com |
Authentication-Results: | sourceware.org; auth=none |
X-Virus-Found: | No |
X-Spam-SWARE-Status: | No, score=1.1 required=5.0 tests=AFFECTIONATE_BODY,AWL,BAYES_00,DEAR_SOMETHING,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=no version=3.3.2 |
X-HELO: | mail-wi0-f176.google.com |
X-Received: | by 10.180.84.226 with SMTP id c2mr2115426wiz.50.1403729689765; Wed, 25 Jun 2014 13:54:49 -0700 (PDT) |
Message-ID: | <53AB3717.1060205@gmail.com> |
Date: | Wed, 25 Jun 2014 22:54:47 +0200 |
From: | Marco Atzeri <marco DOT atzeri AT gmail DOT com> |
User-Agent: | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 |
MIME-Version: | 1.0 |
To: | "cygwin AT cygwin DOT com" <cygwin AT cygwin DOT com> |
CC: | s DOT veremieiev AT gmail DOT com |
Subject: | process limit on cygwin 64bit |
References: | <CAHaow_-ENWB8XPePJ3J=0_Jbp6g-soR=NVydTu+hCvCsNafkjA AT mail DOT gmail DOT com> |
In-Reply-To: | <CAHaow_-ENWB8XPePJ3J=0_Jbp6g-soR=NVydTu+hCvCsNafkjA@mail.gmail.com> |
X-Forwarded-Message-Id: | <CAHaow_-ENWB8XPePJ3J=0_Jbp6g-soR=NVydTu+hCvCsNafkjA AT mail DOT gmail DOT com> |
X-IsSubscribed: | yes |
--------------030208040507030902070500 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sergii, kudos, I am really impressed by your usage of cygwin. I am redirecting your question to the cygwin list as it is more likely to find there an answer to process limit on cygwin 64. Regards Marco -------- Original Message -------- Subject: [OMPI users] Fwd: openmpi linking problem Date: Wed, 25 Jun 2014 18:19:50 +0100 From: Sergii Veremieiev Reply-To: Open MPI Users Dear Sir/Madam, I'm trying to run a parallel finite element analysis 64-bit code on my desktop with Windows 7, Cygwin, Open MPI 1.7.5, 64Gb RAM and 6-core Intel Core i7-3930K CPU via "mpirun -np 6 executable" command. The code runs fine, but if I increase the number of elements to a critical one (roughly more than 100k) the built-in Mumps library returns an error message (please see below). Can you possibly advise me what can be a problem? I have checked in Task Manager the code is using about 3-6Gb per process or about 20Gb in total, that is much smaller than the amount of physical memory available on the system 55Gb. Is there possibly a memory limit in Windows available per process? Thank you. Best regards, Sergii mpirun has exited due to process rank 1 with PID 6028 on node exiting improperly. There are three reasons this could occur: 1. this process did not call "init" before exiting, but others in the job did. This can cause a job to hang indefinitely while it waits for all processes to call "init". By rule, if one process calls "init", then ALL processes must call "init" prior to termination. 2. this process called "init", but exited without calling "finalize". By rule, all processes that call "init" MUST call "finalize" prior to exiting or it will be considered an "abnormal termination" 3. this process called "MPI_Abort" or "orte_abort" and the mca parameter orte_create_session_dirs is set to false. In this case, the run-time cannot detect that the abort call was an abnormal termination. Hence, the only error message you will receive is this one. This may have caused other processes in the application to be terminated by signals sent by mpirun (as reported here). You can avoid this message by specifying -quiet on the mpirun command line. --------------030208040507030902070500 Content-Type: text/plain; charset=windows-1252; name="Attached Message Part" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Attached Message Part" _______________________________________________ users mailing list users AT open-mpi DOT org Subscription: http://www.open-mpi.org/mailman/listinfo.cgi/users Link to this post: http://www.open-mpi.org/community/lists/users/2014/06/24703.php --------------030208040507030902070500 Content-Type: text/plain; charset=us-ascii -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple --------------030208040507030902070500--
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |