improve project structure
[epclust.git] / code / README
CommitLineData
ab4a34ef
BA
1To compile source code :
2
4b7107ce
BA
3 cd build/stage1/src #and then stage2
4 cmake ../../../stage1/src
ab4a34ef
BA
5 make
6
7Usage :
8
311c5c07 9 mpirun -np nbProcess ppam.exe cluster ifilename nbSeriesInChunk nbClusters randomize p_for_dissims
ab4a34ef
BA
10
11Where :
311c5c07 12 nbProcess = number of simultaneous processes
ab4a34ef
BA
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.