This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#ifndef unlikely | |
#ifdef __GNUC__ | |
#define unlikely(x) __builtin_expect(!!(x), 0) | |
#else | |
#define unlikely(x) (x) | |
#endif | |
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
void cblas_drotmg (double *d1, double *d2, double *x1, const double y1, double *param); | |
void drotmg_ (double *d1, double *d2, double *x1, const double* y1, double *param); | |
int main() | |
{ | |
int i; | |
double d1,d2,x1,y1; | |
double param[5]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/time.h> | |
//#define ITERS 1000000 | |
void dgemv_(char *, int*, int *, double*, double*, int*, double*, int*, double*, double*, int*); | |
int main(int argc, char * argv[]) | |
{ | |
int m, n; |
OlderNewer