diff README.txt @ 0:0ce47c784647

Initial commit
author Merten Sach <msach@mailbox.tu-berlin.de>
date Tue, 27 Sep 2011 15:08:02 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/README.txt	Tue Sep 27 15:08:02 2011 +0200
     1.3 @@ -0,0 +1,22 @@
     1.4 +Kernel: k-means Clustering
     1.5 +
     1.6 +This is a kernel-type benchmark of a simple off-line clustering algorithm. Careful: Hash Checksum Verification of the benchmark output is not feasible for kmeans. Usage of the float data type leads to imprecisions, caused by threading, up to the fifth place after the decimal point in the results.
     1.7 +
     1.8 +Installation:
     1.9 +
    1.10 +To install the kernel benchmark, navigate to the directory this file is located in, open up a terminal and simply type 'make'. For certain architectures 
    1.11 +or special compilation options, you might need to change compilation parameters in the makefile.
    1.12 +
    1.13 +Usage:
    1.14 +
    1.15 +You may execute the benchmark by navigating to this directory after compilation and typing
    1.16 +
    1.17 +./kmeans -b -i <input filename> -n <cluster center count>
    1.18 +
    1.19 +The specification of the number of threads used to perform the clustering process depends on the parallel programming model.
    1.20 +
    1.21 +Benchmark versions:
    1.22 +
    1.23 +Serial
    1.24 +POSIX Threads
    1.25 +OpenMP SuperScalar