Skip to content
Snippets Groups Projects
Commit ecc42612 authored by Jammer, Tim's avatar Jammer, Tim
Browse files

Removed unused code

parent c01e9805
No related branches found
No related tags found
1 merge request!3more work on infrastructure II
......@@ -5,21 +5,6 @@ from scripts.Infrastructure.MPICall import MPI_Call
from scripts.Infrastructure.Template import InstructionBlock
class MPI_Call_Factory:
def mpi_send(self, *args):
return MPI_Call("MPI_Send",
OrderedDict([("BUFFER", args[0]), ("COUNT", args[1]), ("DATATYPE", args[2]), ("SRC", args[3]),
("TAG", args[4]), ("COMM", args[5])]),
"1.0")
def mpi_recv(self, *args):
return MPI_Call("MPI_Recv",
OrderedDict([("BUFFER", args[0]), ("COUNT", args[1]), ("DATATYPE", args[2]), ("SRC", args[3]),
("TAG", args[4]), ("COMM", args[5]), ("STATUS", args[6])]),
"1.0")
class Correct_Parameter:
# default params
buf_size = 10
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment