blob: c25ed65e979422159305cb0232450bb1be3f909b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#define PATH_TIME_SERIES "./"
#define PATH_RESULTS "./"
#define DTYPE double
#define ARIT_FACT 32
//#define HBM_ALOC
//#define RANDOM_DIAGS
int loadTimeSeriesFromFile (std::string infilename, std::vector<DTYPE> &A, int &timeSeriesLength);
int saveProfileToFile(std::string outfilename, DTYPE * profile, int * profileIndex, int timeSeriesLength, int windowSize);
|