Hello community,

here is the log from the commit of package libatlas3 for openSUSE:Factory 
checked in at 2013-10-17 14:17:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libatlas3 (Old)
 and      /work/SRC/openSUSE:Factory/.libatlas3.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libatlas3"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libatlas3/libatlas3.changes      2013-06-14 
15:45:16.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libatlas3.new/libatlas3.changes 2013-10-17 
17:40:17.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Oct 14 12:17:31 UTC 2013 - mhruse...@suse.com
+
+- Don't require too many timing calibration data on x86
+  * atlas-hack.patch
+
+-------------------------------------------------------------------

New:
----
  atlas-hack.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libatlas3.spec ++++++
--- /var/tmp/diff_new_pack.mOTrnE/_old  2013-10-17 17:40:19.000000000 +0200
+++ /var/tmp/diff_new_pack.mOTrnE/_new  2013-10-17 17:40:19.000000000 +0200
@@ -29,6 +29,7 @@
 Source0:        atlas%{version}.tar.bz2
 Source1:        README.SuSE
 Patch0:         atlas-suse-shared.patch
+Patch1:         atlas-hack.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc-fortran
 BuildRequires:  lapack-devel
@@ -180,6 +181,9 @@
 %prep
 %setup -q -n ATLAS
 %patch0 -p1
+%ifarch x86_64 i586
+%patch1
+%endif
 cp %{SOURCE1} doc
 
 %build

++++++ atlas-hack.patch ++++++
Index: tune/sysinfo/masrch.c
===================================================================
--- tune/sysinfo/masrch.c.orig
+++ tune/sysinfo/masrch.c
@@ -113,7 +113,12 @@ double matime
    j = 0;
    for (i=0; i != NTIM; i++)
    {
-      assert( fscanf(fp, "%lf", &mflop[i]) );
+      if(fscanf(fp, "%lf", &mflop[i])==0) {
+         if (i>0)
+            mflop[i]=mflop[i-1];
+         else
+            assert(0);
+      }
    }
    fclose(fp);
 /*
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to