Browse Source

macros change for dataset testing

master
anapt 7 years ago
parent
commit
5adec621f7
  1. 16
      mean_shift_cuda/meanshift.cu
  2. 8
      mean_shift_cuda_shared_mem/meanshift.cu
  3. 8
      mean_shift_serial/serial.c

16
mean_shift_cuda/meanshift.cu

@ -5,10 +5,10 @@
#include "meanshift_utils.h"
#include "meanshift_gpu_utils.h"
int DEVIATION = 1;
int NUMBER_OF_POINTS = 587;
int DIMENSIONS = 2;
const char *POINTS_FILENAME = "../data/X.bin";
int DEVIATION = 20;
int NUMBER_OF_POINTS = 1024;
int DIMENSIONS = 32;
const char *POINTS_FILENAME = "../data/32";
const char *LABELS_FILENAME = "../data/L.bin";
parameters params;
@ -38,8 +38,8 @@ int main(int argc, char **argv){
printf("\nTotal number of recursions = %d\n", recursions);
printf("%s wall clock time = %f\n","Mean Shift", seq_time);
free(vectors[0]);
free(vectors);
free(shifted_points[0]);
free(shifted_points);
//free(vectors[0]);
//free(vectors);
//free(shifted_points[0]);
//free(shifted_points);
}

8
mean_shift_cuda_shared_mem/meanshift.cu

@ -5,10 +5,10 @@
#include "meanshift_utils.h"
#include "meanshift_gpu_utils.h"
int DEVIATION = 1;
int NUMBER_OF_POINTS = 587;
int DIMENSIONS = 2;
const char *POINTS_FILENAME = "../data/X.bin";
int DEVIATION = 20;
int NUMBER_OF_POINTS = 1024;
int DIMENSIONS = 32;
const char *POINTS_FILENAME = "../data/32";
const char *LABELS_FILENAME = "../data/L.bin";
parameters params;

8
mean_shift_serial/serial.c

@ -4,10 +4,10 @@
#include "serial_declarations.h"
int DEVIATION = 31000;
int NUMBER_OF_POINTS = 5000;
int DIMENSIONS = 2;
char* POINTS_FILENAME = "../data/s4";
int DEVIATION = 20;
int NUMBER_OF_POINTS = 1024;
int DIMENSIONS = 32;
char* POINTS_FILENAME = "../data/32";
char* LABELS_FILENAME = "../data/L.bin";
struct timeval startwtime, endwtime;

Loading…
Cancel
Save