Forráskód Böngészése

drop duplicate semi-comma

Samuel Thibault 8 éve
szülő
commit
3fd97105b5

+ 4 - 4
examples/audio/starpu_audio_processing.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2012, 2014-2015  Université de Bordeaux
+ * Copyright (C) 2010-2012, 2014-2015, 2017  Université de Bordeaux
  * Copyright (C) 2010  Mehdi Juhoor <mjuhoor@gmail.com>
  * Copyright (C) 2010, 2011, 2012, 2013, 2016, 2017  CNRS
  *
@@ -374,17 +374,17 @@ static void parse_args(int argc, char **argv)
 
 		if (strcmp(argv[i], "-i") == 0)
 		{
-			inputfilename = argv[++i];;
+			inputfilename = argv[++i];
 		}
 
 		if (strcmp(argv[i], "-o") == 0)
 		{
-			outputfilename = argv[++i];;
+			outputfilename = argv[++i];
 		}
 
 		if (strcmp(argv[i], "-no-output") == 0)
 		{
-			outputfilename = NULL;;
+			outputfilename = NULL;
 		}
 
 		/* block size */

+ 1 - 1
examples/cpp/add_vectors_interface.cpp

@@ -339,7 +339,7 @@ static void register_vector_cpp_handle(starpu_data_handle_t handle, unsigned hom
 			local_interface->ptr = 0;
                         local_interface->dev_handle = 0;
                         local_interface->offset = 0;
-			local_interface->vec = NULL;;
+			local_interface->vec = NULL;
 		}
 
 		local_interface->id = vector_interface->id;

+ 2 - 2
include/pthread_win32/pthread.h

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010 Université Bordeaux
+ * Copyright (C) 2010, 2017 Université Bordeaux
  * Copyright (C) 2010, 2017  CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
@@ -226,7 +226,7 @@ again:
   switch (WaitForSingleObject(*mutex, INFINITE)) {
     default:
     case WAIT_FAILED:
-      return unixErrno();;
+      return unixErrno();
     case WAIT_ABANDONED:
     case WAIT_OBJECT_0:
       return 0;

+ 1 - 1
mpi/src/load_balancer/policy/load_heat_propagation.c

@@ -418,7 +418,7 @@ static int init_heat(struct starpu_mpi_lb_conf *itf)
 	}
 
 	_STARPU_MPI_MALLOC(user_itf, sizeof(struct starpu_mpi_lb_conf));
-	memcpy(user_itf, itf, sizeof(struct starpu_mpi_lb_conf));;
+	memcpy(user_itf, itf, sizeof(struct starpu_mpi_lb_conf));
 
 	/* Get the neighbors of the local MPI node */
 	user_itf->get_neighbors(&neighbor_ids, &nneighbors);

+ 1 - 1
sc_hypervisor/src/policies_utils/speed.c

@@ -245,7 +245,7 @@ double sc_hypervisor_get_avg_speed(enum starpu_worker_archtype arch)
 			}
 		}
 
-		total_estimated_flops += sc_w->total_flops / 1000000000.0; /*in gflops */;;
+		total_estimated_flops += sc_w->total_flops / 1000000000.0; /*in gflops */
 
 		if(max_real_start_time < sc_w->real_start_time)
 			max_real_start_time = sc_w->real_start_time;

+ 3 - 3
socl/src/cl_enqueuecopybuffer.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010,2011, 2014 University of Bordeaux
+ * Copyright (C) 2010,2011, 2014, 2017 University of Bordeaux
  * Copyright (C) 2016  CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
@@ -21,7 +21,7 @@ static void soclEnqueueCopyBuffer_opencl_task(void *descr[], void *args) {
    int wid;
    cl_command_queue cq;
    cl_event ev;
-   command_copy_buffer cmd = (command_copy_buffer)args;;
+   command_copy_buffer cmd = (command_copy_buffer)args;
 
   cl_event event = command_event_get(cmd);
   event->prof_start = _socl_nanotime();
@@ -41,7 +41,7 @@ static void soclEnqueueCopyBuffer_opencl_task(void *descr[], void *args) {
 }
 
 static void soclEnqueueCopyBuffer_cpu_task(void *descr[], void *args) {
-   command_copy_buffer cmd = (command_copy_buffer)args;;
+   command_copy_buffer cmd = (command_copy_buffer)args;
 
   cl_event ev = command_event_get(cmd);
   ev->prof_start = _socl_nanotime();

+ 2 - 2
tests/main/wait_all_regenerable_tasks.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2011, 2013-2014, 2016  Université de Bordeaux
+ * Copyright (C) 2010-2011, 2013-2014, 2016-2017  Université de Bordeaux
  * Copyright (C) 2010, 2011, 2012, 2013  CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
@@ -84,7 +84,7 @@ int main(int argc, char **argv)
 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
 
 	struct starpu_task task[K];
-	unsigned cnt[K];;
+	unsigned cnt[K];
 
 	int i;
 	for (i = 0; i < K; i++)

+ 1 - 1
tools/starpu_replay.c

@@ -333,7 +333,7 @@ void reset(void) {
 	endTime = 0.0;
 	iteration = -1;
 	nb_parameters = 0;
-	alloc_mode = 1;;
+	alloc_mode = 1;
 }