From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: * X-Spam-Status: No, score=2.0 required=5.0 tests=BAYES_00,FORGED_MUA_MOZILLA, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,81bb2ce65a3240c3 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.227.67 with SMTP id ry3mr1827695pbc.8.1342086467987; Thu, 12 Jul 2012 02:47:47 -0700 (PDT) Path: l9ni11511pbj.0!nntp.google.com!news1.google.com!news.glorb.com!aioe.org!.POSTED!not-for-mail From: "Nasser M. Abbasi" Newsgroups: comp.lang.ada Subject: Re: What would you like in Ada202X? Date: Thu, 12 Jul 2012 04:47:45 -0500 Organization: Aioe.org NNTP Server Message-ID: References: <3637793.35.1335340026327.JavaMail.geo-discussion-forums@ynfi5> <4ff312ad$0$6178$ba4acef3@reader.news.orange.fr> <4ff314d8$0$6218$ba4acef3@reader.news.orange.fr> <856acffb-1fc3-474e-b11f-f540977e945f@googlegroups.com> <0o59v7djiffnl7sqdpp2uiso78oa9hb8sb@invalid.netcom.com> Reply-To: nma@12000.org NNTP-Posting-Host: KdJUrTuvv3Zv/s8pPxNluw.user.speranza.aioe.org Mime-Version: 1.0 X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 X-Notice: Filtered by postfilter v. 0.8.2 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: 2012-07-12T04:47:45-05:00 List-Id: On 7/12/2012 3:29 AM, Simon Wright wrote: > > What's the threading position with current BLAS/LAPACK? If you use recent Lapack, it should be OK according to : http://www.netlib.org/lapack/lapack-3.1.0.changes " ================ == LAPACK 3.1 == ================ Release date: Su 11/12/2006. "6) Thread safety: Removed all the SAVE and DATA statements (or provided alternate routines without those statements), increasing reliability on SMPs." Also, from this pdf file, http://www.lahey.com/docs/blaseman_Lin62.pdf I see: "This manual describes the usage of the following two software. BLAS thread-safe version V4.0 LAPACK thread-safe version V4.0 Example program using thread-safe subroutines This section shows an example code that uses subroutines from BLAS and LAPACK thread-safe versions. The example is simple enough to understand and intended for use in order to describe principles of calling thread-safe subroutines from an OpenMP Fortran program. " So, It seems from all the above and few other things I've seen googling this, that current versions are thread safe. --Nasser