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):
_______________________________________________
relax (http://nmr-relax.com)
This is the relax-commits mailing list
[email protected]
To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits