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

« back to all changes in this revision

Viewing changes to tune/blas/gemm/userflag.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 2000 R. Clint Whaley
4
4
 *
5
5
 * Redistribution and use in source and binary forms, with or without
92
92
   static char sMCC[1024], sMMFLAGS[2048];
93
93
   FILE *fp;
94
94
 
 
95
   *MCC = *MMFLAGS = NULL;
95
96
   n = NumUserCases(pre);
96
97
   sprintf(ln, "%ccases.dsc", pre);
97
98
   fp = fopen(ln, "r");
146
147
 
147
148
   fpout = fopen(chkfile, "w");
148
149
   assert(fpout);
149
 
   fprintf(fpout, "main(){}\n");
 
150
   fprintf(fpout, "int main(){}\n");
150
151
   fclose(fpout);
151
152
   n = NumUserCases0(infile);
152
153
   fpin = fopen(infile, "r");
293
294
   }
294
295
}
295
296
 
296
 
main(int nargs, char **args)
 
297
int main(int nargs, char **args)
297
298
/*
298
299
 * Eliminates compiler/flag combos that don't work,
299
300
 * NOTE: infile & outfile can be same
302
303
   char *infile, *outfile;
303
304
   GetFlags(nargs, args, &infile, &outfile);
304
305
   GoGetThem(infile, outfile);
305
 
   exit(0);
 
306
   return(0);
306
307
}