Преглед на файлове

mpi/tests/user_defined_datatype.c: fix spacing

Nathalie Furmento преди 13 години
родител
ревизия
d915f07405
променени са 1 файла, в които са добавени 6 реда и са изтрити 6 реда
  1. 6 6
      mpi/tests/user_defined_datatype.c

+ 6 - 6
mpi/tests/user_defined_datatype.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
  *
- * Copyright (C) 2012  Centre National de la Recherche Scientifique
+ * Copyright (C) 2012, 2013  Centre National de la Recherche Scientifique
  *
  *
  * StarPU is free software; you can redistribute it and/or modify
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
  * it under the terms of the GNU Lesser General Public License as published by
@@ -53,14 +53,14 @@ void test_handle_recv_send(starpu_data_handle_t handle, struct starpu_codelet *c
 {
 {
 	if (rank == 1)
 	if (rank == 1)
 	{
 	{
-	     starpu_mpi_send(handle, 0, tag, MPI_COMM_WORLD);
+		starpu_mpi_send(handle, 0, tag, MPI_COMM_WORLD);
 	}
 	}
 	else if (rank == 0)
 	else if (rank == 0)
 	{
 	{
-	     MPI_Status status;
-	     starpu_insert_task(codelet, STARPU_R, handle, 0);
-	     starpu_mpi_recv(handle, 1, tag, MPI_COMM_WORLD, &status);
-	     starpu_insert_task(codelet, STARPU_R, handle, 0);
+		MPI_Status status;
+		starpu_insert_task(codelet, STARPU_R, handle, 0);
+		starpu_mpi_recv(handle, 1, tag, MPI_COMM_WORLD, &status);
+		starpu_insert_task(codelet, STARPU_R, handle, 0);
 	}
 	}
 }
 }