Mercurial > cgi-bin > hgwebdir.cgi > PR > Applications > Vthread > Vthread__KMeans__Bench
comparison kmeans.h @ 0:e69e4c2d612a
Initial pthreads version
| author | Merten Sach <msach@mailbox.tu-berlin.de> |
|---|---|
| date | Wed, 03 Aug 2011 19:30:34 +0200 |
| parents | |
| children | 8e7bdab2840f |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:783c96a334a8 |
|---|---|
| 1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |
| 2 /* File: kmeans.h (an OpenMP version) */ | |
| 3 /* Description: header file for a simple k-means clustering program */ | |
| 4 /* */ | |
| 5 /* Author: Wei-keng Liao */ | |
| 6 /* ECE Department Northwestern University */ | |
| 7 /* email: wkliao@ece.northwestern.edu */ | |
| 8 /* Copyright, 2005, Wei-keng Liao */ | |
| 9 /* */ | |
| 10 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |
| 11 | |
| 12 #ifndef _H_KMEANS | |
| 13 #define _H_KMEANS | |
| 14 | |
| 15 #include <assert.h> | |
| 16 | |
| 17 double** pthreads_kmeans(int, double**, int, int, int, double, int*); | |
| 18 | |
| 19 double** file_read(int, char*, int*, int*); | |
| 20 | |
| 21 double wtime(void); | |
| 22 | |
| 23 #endif |
