Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Whitespaces!
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 18 Feb 2021 20:48:34 +0000 (21:48 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 19 Feb 2021 09:19:02 +0000 (10:19 +0100)
ChangeLog
src/smpi/bindings/smpi_pmpi_win.cpp
src/smpi/mpi/smpi_request.cpp
teshsuite/s4u/basic-parsing-test/basic-parsing-test.cpp

index 3888bc6..fd3a5ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,9 +7,9 @@ User-visible changes:
    - 'verbose-exit' is now 'debug/verbose-exit'
    - 'simix/breakpoint' is now 'debug/breakpoint'
    - 'clean-atexit' is now 'debug/clean-atexit'
- - Removed all that was related to the "Storage" type in all APIs and bindings. 
+ - Removed all that was related to the "Storage" type in all APIs and bindings.
    "Disks" have been introduced more than a year ago to replace them for the better.
-   It's time to finish this replacement.  
+   It's time to finish this replacement.
 
 S4U:
  - Define new template functions Mailbox::get_unique(), returning a std::unique_ptr.
index 004151d..97af682 100644 (file)
@@ -24,7 +24,8 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi);
 
 #define CHECK_TARGET_DISP(num)\
   if(win->dynamic()==0)\
-    CHECK_NEGATIVE((num), MPI_ERR_RMA_RANGE, target_disp)\
+    CHECK_NEGATIVE((num), MPI_ERR_RMA_RANGE, target_disp)
+
 /* PMPI User level calls */
 
 int PMPI_Win_create( void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm, MPI_Win *win){
index 8467be6..fd86a4e 100644 (file)
@@ -911,7 +911,6 @@ void Request::finish_wait(MPI_Request* request, MPI_Status * status)
     MC_assert(not MC_is_active()); /* Only fail in MC mode */
   }
   unref(request);
-
 }
 
 int Request::wait(MPI_Request * request, MPI_Status * status)
index 00951ca..24705bb 100644 (file)
@@ -28,7 +28,6 @@ static void test_one_link(const std::vector<sg4::Host*> hosts)
     XBT_INFO("  Link %s: latency = %f, bandwidth = %f", link->get_cname(), link->get_latency(), bandwidth);
     if (bandwidth < min_bandwidth || min_bandwidth < 0.0)
       min_bandwidth = bandwidth;
-
   }
   XBT_INFO("Route latency = %f, route bandwidth = %f", latency, min_bandwidth);
 }
@@ -52,7 +51,6 @@ static void test_full_link(const std::vector<sg4::Host*> hosts)
         XBT_INFO("  Link %s: latency = %f, bandwidth = %f", link->get_cname(), link->get_latency(), bandwidth);
         if (bandwidth < min_bandwidth || min_bandwidth < 0.0)
           min_bandwidth = bandwidth;
-
       }
       XBT_INFO("  Route latency = %f, route bandwidth = %f", latency, min_bandwidth);
     }