Voici le fichier calcul.h :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef __LIB_CALCUL_H__
#define __LIB_CALCUL_H__
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
extern uint64_t rdtsc(void);
float randFloat();
void sgemmRef(float * r, float * a, float * b, size_t size);
#ifdef __cplusplus
}
#endif
#endif
|
|