Files
blis/kernels/power7/3/test/blis_utest.h
Field G. Van Zee 97aaf220a8 Added new kernels, configurations.
Details:
- Added various micro-kernels for the following architectures:
    Intel MIC
    IBM BG/Q
    IBM Power7
    AMD Piledriver
    Loogson 3A
  and reorganized kernels directory. Thanks to Tyler Smith, Mike Kistler,
  and Xianyi Zhang for contributing these kernels.
- Added configurations corresponding to above architectures, and renamed
  "clarksville" configuration to "dunnington".
2013-09-17 10:51:36 -05:00

36 lines
573 B
C

#ifndef _BLIS_UTEST_H_
#define _BLIS_UTEST_H_
#define BLIS_DEFAULT_MR_S 8
#define BLIS_DEFAULT_NR_S 4
#define BLIS_DEFAULT_MR_D 8
#define BLIS_DEFAULT_NR_D 4
#define BLIS_DEFAULT_MR_C 8
#define BLIS_DEFAULT_NR_C 4
#define BLIS_DEFAULT_MR_Z 8
#define BLIS_DEFAULT_NR_Z 4
typedef unsigned long dim_t;
typedef long inc_t;
// Complex types
typedef struct scomplex_s
{
float real;
float imag;
} scomplex;
typedef struct dcomplex_s
{
double real;
double imag;
} dcomplex;
#define bli_check_error_code(x)
#endif