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

« back to all changes in this revision

Viewing changes to src/testing/ATL_f77gels.c

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2009-09-17 23:31:54 UTC
  • mto: (2.2.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090917233154-9esw88ub02twbuab
Tags: upstream-3.8.3
ImportĀ upstreamĀ versionĀ 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *             Automatically Tuned Linear Algebra Software v3.8.3
 
3
 *                    (C) Copyright 2006 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
#include "atlas_misc.h"
 
31
#include "atlas_tst.h"
 
32
#include "atlas_f77.h"
 
33
 
 
34
#if defined(NoChange)
 
35
   #define F77GELS Mjoin(PRE,gels)
 
36
#elif defined (UpCase)
 
37
   #define F77GELS Mjoin(PREU,GELS)
 
38
#elif defined (Add_) || defined(Add__)
 
39
   #define F77GELS Mjoin(PRE,gels_)
 
40
#endif
 
41
#define f77gels Mjoin(PATL,f77gels)
 
42
 
 
43
int f77gels(const enum ATLAS_TRANS TA, const int M, const int N, const int NRHS,
 
44
            TYPE *A, const int lda, TYPE *B, const int ldb)
 
45
{
 
46
   #if defined(StringSunStyle)
 
47
      #if defined(ATL_FunkyInts)
 
48
         F77_INTEGER ONE=1;
 
49
      #else
 
50
         int ONE=1;
 
51
      #endif
 
52
   #elif defined(StringStructVal) || defined(StringStructPtr) || defined(StringCrayStyle)
 
53
      F77_CHAR ftrans;
 
54
   #endif
 
55
   #ifdef ATL_FunkyInts
 
56
      const F77_INTEGER F77N=N, F77lda=lda, F77ldb=ldb, F77M=M, F77NRHS=NRHS;
 
57
      F77_INTEGER lwork, info;
 
58
   #else
 
59
      int info, lwork;
 
60
      #define F77M M
 
61
      #define F77N N
 
62
      #define F77NRHS NRHS
 
63
      #define F77lda lda
 
64
      #define F77ldb ldb
 
65
   #endif
 
66
   char ctrans;
 
67
   TYPE *work, wrk[2];
 
68
 
 
69
   if (TA == AtlasNoTrans) ctrans = 'N';
 
70
   else if (TA == AtlasTrans) ctrans = 'T';
 
71
   else ctrans = 'C';
 
72
   #if defined(StringSunStyle)
 
73
      #define args &ctrans, &F77M, &F77N, &F77NRHS, A, &F77lda, B, &F77ldb, \
 
74
                   work, &lwork, &info, ONE
 
75
   #elif defined(StringCrayStyle)
 
76
      ftrans = ATL_C2F_TransChar(cuplo);
 
77
      #define args ftrans, &F77M, &F77N, &F77NRHS, A, &F77lda, B, &F77ldb, \
 
78
                   work, &lwork, &info
 
79
   #elif defined(StringStructVal)
 
80
      ftrans.len = 1;
 
81
      ftrans.cp = &ctrans;
 
82
      #define args ftrans, &F77M, &F77N, &F77NRHS, A, &F77lda, B, &F77ldb, \
 
83
                   work, &lwork, &info
 
84
   #elif defined(StringStructPtr)
 
85
      ftrans.len = 1;
 
86
      ftrans.cp = &ctrans;
 
87
      #define args &ftrans, &F77M, &F77N, &F77NRHS, A, &F77lda, B, &F77ldb, \
 
88
                   work, &lwork, &info
 
89
   #else
 
90
      #define args NULL
 
91
      fprintf(stderr, "\n\nF77/C interface not defined!!\n\n");
 
92
      exit(-1);
 
93
   #endif
 
94
/*
 
95
 * Query routine for optimal workspace, allocate it, and call routine with it
 
96
 */
 
97
   work = wrk;
 
98
   lwork = -1;
 
99
   F77GELS(args);
 
100
   lwork = wrk[0];
 
101
   work = malloc(ATL_MulBySize(lwork));
 
102
   ATL_assert(work);
 
103
   info = 0;
 
104
   F77GELS(args);
 
105
   free(work);
 
106
   return(info);
 
107
}