improve project structure
[epclust.git] / code / README
... / ...
CommitLineData
1To compile source code :
2
3 cd build/stage1/src #and then stage2
4 cmake ../../../stage1/src
5 make
6
7Usage :
8
9 mpirun -np nbProcess ppam.exe cluster ifilename nbSeriesInChunk nbClusters randomize p_for_dissims
10
11Where :
12 nbProcess = number of simultaneous processes
13 ifilename = path to serialized dataset (read below)
14 nbSeriesInChunk = number of time-series to process sequentially
15 nbClusters = number of clusters
16 randomize = 1 to dispatch time-series at random. 0 to process them in order
17 p_for_dissims = the 'p' of L_p distance used to compute dissimilarities
18
19Note : custom [de]serialization. Consider writing your own
20in src/TimeSeries/ folder if you plan to test the package.
21
22See also src/main.c for the details.