annotate README.txt @ 3:d906272ff3a3

DataSet print
author Merten Sach <msach@mailbox.tu-berlin.de>
date Wed, 28 Sep 2011 15:04:24 +0200
parents
children
rev   line source
msach@0 1 Kernel: k-means Clustering
msach@0 2
msach@0 3 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.
msach@0 4
msach@0 5 Installation:
msach@0 6
msach@0 7 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
msach@0 8 or special compilation options, you might need to change compilation parameters in the makefile.
msach@0 9
msach@0 10 Usage:
msach@0 11
msach@0 12 You may execute the benchmark by navigating to this directory after compilation and typing
msach@0 13
msach@0 14 ./kmeans -b -i <input filename> -n <cluster center count>
msach@0 15
msach@0 16 The specification of the number of threads used to perform the clustering process depends on the parallel programming model.
msach@0 17
msach@0 18 Benchmark versions:
msach@0 19
msach@0 20 Serial
msach@0 21 POSIX Threads
msach@0 22 OpenMP SuperScalar