mailr15599 - in /1.3/multi: mpi4py_processor.py multi_processor_base.py processor.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on March 22, 2012 - 09:20:
Author: bugman
Date: Thu Mar 22 09:20:07 2012
New Revision: 15599

URL: http://svn.gna.org/viewcvs/relax?rev=15599&view=rev
Log:
Spelling fix for a number of the processor method names.


Modified:
    1.3/multi/mpi4py_processor.py
    1.3/multi/multi_processor_base.py
    1.3/multi/processor.py

Modified: 1.3/multi/mpi4py_processor.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/multi/mpi4py_processor.py?rev=15599&r1=15598&r2=15599&view=diff
==============================================================================
--- 1.3/multi/mpi4py_processor.py (original)
+++ 1.3/multi/mpi4py_processor.py Thu Mar 22 09:20:07 2012
@@ -177,7 +177,7 @@
         MPI.COMM_WORLD.send(obj=command, dest=dest)
 
 
-    def master_recieve_result(self):
+    def master_receive_result(self):
         return MPI.COMM_WORLD.recv(source=MPI.ANY_SOURCE)
 
 
@@ -196,5 +196,5 @@
         in_main_loop = False
 
 
-    def slave_recieve_commands(self):
+    def slave_receive_commands(self):
         return MPI.COMM_WORLD.recv(source=0)

Modified: 1.3/multi/multi_processor_base.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/multi/multi_processor_base.py?rev=15599&r1=15598&r2=15599&view=diff
==============================================================================
--- 1.3/multi/multi_processor_base.py (original)
+++ 1.3/multi/multi_processor_base.py Thu Mar 22 09:20:07 2012
@@ -112,8 +112,8 @@
         raise_unimplemented(self.master_queue_command)
 
 
-    def master_recieve_result(self):
-        raise_unimplemented(self.master_recieve_result)
+    def master_receive_result(self):
+        raise_unimplemented(self.master_receive_result)
 
 
     # FIXME move to lower level
@@ -218,7 +218,7 @@
             # Loop until the queue of calculations is depleted.
             while len(running_set) != 0:
                 # Get the result.
-                result = self.master_recieve_result()
+                result = self.master_receive_result()
 
                 # Debugging print out.
                 if verbosity.level():
@@ -248,8 +248,8 @@
          self.memo_map.clear()
 
 
-    def slave_recieve_commands(self):
-        raise_unimplemented(self.slave_recieve_commands)
+    def slave_receive_commands(self):
+        raise_unimplemented(self.slave_receive_commands)
 
 
 

Modified: 1.3/multi/processor.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/multi/processor.py?rev=15599&r1=15598&r2=15599&view=diff
==============================================================================
--- 1.3/multi/processor.py (original)
+++ 1.3/multi/processor.py Thu Mar 22 09:20:07 2012
@@ -447,7 +447,7 @@
                 # Execute the slave by catching commands, catching all 
exceptions.
                 try:
                     # Fetch any commands on the queue.
-                    commands = self.slave_recieve_commands()
+                    commands = self.slave_receive_commands()
 
                     # Convert to a list, if needed.
                     if not isinstance(commands, list):




Related Messages


Powered by MHonArc, Updated Thu Mar 22 10:20:01 2012