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

« back to all changes in this revision

Viewing changes to interfaces/blas/C/src/cblas_zgemm.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
1
/*
2
 
 *             Automatically Tuned Linear Algebra Software v3.8.4
 
2
 *             Automatically Tuned Linear Algebra Software v3.10.1
3
3
 *                    (C) Copyright 1999 R. Clint Whaley
4
4
 *
5
5
 * Redistribution and use in source and binary forms, with or without
124
124
                                "TransB must be %d, %d or %d, but is set to %d",
125
125
                                CblasNoTrans, CblasTrans, CblasConjTrans, TB);
126
126
         if ( (ldb < N) || (ldb < 1) )
127
 
            info = cblas_errprn(11,info, "ldb must be >= MAX(K,1): ldb=%d K=%d",
128
 
                                ldb, K);
 
127
            info = cblas_errprn(11,info, "ldb must be >= MAX(N,1): ldb=%d N=%d",
 
128
                                ldb, N);
129
129
      }
130
130
      if ( (ldc < M) || (ldc < 1) )
131
131
         info = cblas_errprn(14, info,"ldc must be >= MAX(M,1): ldc=%d M=%d",