~ubuntu-branches/ubuntu/vivid/atlas/vivid

« back to all changes in this revision

Viewing changes to interfaces/lapack/C/src/clapack_dgels.c

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-06-11 15:58:16 UTC
  • mfrom: (1.1.3 upstream)
  • mto: (2.2.21 experimental)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: package-import@ubuntu.com-20130611155816-b72z8f621tuhbzn0
Tags: upstream-3.10.1
Import upstream version 3.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *             Automatically Tuned Linear Algebra Software v3.10.1
 
3
 * Copyright (C) 2010 R. Clint Whaley
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions
 
7
 * are met:
 
8
 *   1. Redistributions of source code must retain the above copyright
 
9
 *      notice, this list of conditions and the following disclaimer.
 
10
 *   2. Redistributions in binary form must reproduce the above copyright
 
11
 *      notice, this list of conditions, and the following disclaimer in the
 
12
 *      documentation and/or other materials provided with the distribution.
 
13
 *   3. The name of the ATLAS group or the names of its contributers may
 
14
 *      not be used to endorse or promote products derived from this
 
15
 *      software without specific written permission.
 
16
 *
 
17
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
18
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 
19
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
20
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ATLAS GROUP OR ITS CONTRIBUTORS
 
21
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
22
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
23
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
24
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
25
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
26
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
27
 * POSSIBILITY OF SUCH DAMAGE.
 
28
 *
 
29
 */
 
30
#define DREAL
 
31
#include "atlas_misc.h"
 
32
#ifdef ATL_USEPTHREADS
 
33
   #include "atlas_ptalias_lapack.h"
 
34
#endif
 
35
#include "atlas_lapack.h"
 
36
#include "clapack.h"
 
37
 
 
38
#define mytrans CblasTrans
 
39
int clapack_dgels(const enum CBLAS_ORDER Order,
 
40
                  const enum CBLAS_TRANSPOSE TA,
 
41
                  ATL_CINT M, ATL_CINT N, ATL_CINT NRHS,
 
42
                  double *A, ATL_CINT lda, double *B, const int ldb)
 
43
/*
 
44
 *  GELS solves overdetermined or underdetermined linear systems
 
45
 *  involving an M-by-N matrix A, or its conjugate-transpose, using a QR
 
46
 *  or LQ factorization of A.  It is assumed that A has full rank.
 
47
 */
 
48
{
 
49
   int ierr = 0;
 
50
 
 
51
   if (Order != CblasRowMajor && Order != CblasColMajor)
 
52
   {
 
53
      ierr = -1;
 
54
      cblas_xerbla(1, "clapack_dgesv",
 
55
                   "Order must be %d or %d, but is set to %d.\n",
 
56
                   CblasRowMajor, CblasColMajor, Order);
 
57
   }
 
58
   if (TA != AtlasNoTrans && TA != mytrans)
 
59
   {
 
60
      ierr = -2;
 
61
      cblas_xerbla(2, "clapack_dgesv",
 
62
                   "Trans must be %d or %d, but is set to %d.\n",
 
63
                   CblasNoTrans, mytrans, TA);
 
64
   }
 
65
   if (M < 0)
 
66
   {
 
67
      ierr = -3;
 
68
      cblas_xerbla(3, "clapack_dgesv",
 
69
                   "M cannot be less than zero 0,; is set to %d.\n", N);
 
70
   }
 
71
   if (N < 0)
 
72
   {
 
73
      ierr = -4;
 
74
      cblas_xerbla(4, "clapack_dgesv",
 
75
                   "N cannot be less than zero 0,; is set to %d.\n", N);
 
76
   }
 
77
   if (NRHS < 0)
 
78
   {
 
79
      ierr = -5;
 
80
      cblas_xerbla(5, "clapack_dgesv",
 
81
                   "NRHS cannot be less than zero 0,; is set to %d.\n", NRHS);
 
82
   }
 
83
   if (lda < M || lda < 1)
 
84
   {
 
85
      ierr = -7;
 
86
      cblas_xerbla(7, "clapack_dgesv",
 
87
                   "lda must be >= MAX(M,1): lda=%d M=%d\n", lda, M);
 
88
   }
 
89
   if (ldb < Mmax(M,N) || ldb < 1)
 
90
   {
 
91
      ierr = -9;
 
92
      cblas_xerbla(9, "clapack_dgesv",
 
93
                   "ldb must be >= MAX(M,N,1): ldb=%d M=%d N=%d\n", ldb, M, N);
 
94
 
 
95
   }
 
96
   if (Order == CblasColMajor)
 
97
      ierr = ATL_dgels(TA, M, N, NRHS, A, lda, B, ldb, NULL, 0);
 
98
   else  /* row-major array */
 
99
   {
 
100
      enum CBLAS_TRANSPOSE TAr = (TA == AtlasNoTrans) ? mytrans : CblasNoTrans;
 
101
      ierr = ATL_dgels(TAr, N, M, NRHS, A, lda, B, ldb, NULL, 0);
 
102
   }
 
103
   return(ierr);
 
104
}
 
105
#undef mytrans