File: blis_utest.h

package info (click to toggle)
python-cython-blis 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 43,676 kB
  • sloc: ansic: 645,510; sh: 2,354; asm: 1,466; python: 821; cpp: 585; makefile: 14
file content (35 lines) | stat: -rw-r--r-- 573 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

#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