|
@@ -125,9 +125,6 @@ class ModelverseKernel(object):
|
|
|
try:
|
|
|
# Forward the message we get to this generator
|
|
|
# Sometimes it might not even be a generator, in which case this should already be in the except block (i.e., for the Read Root operation)
|
|
|
- if inst not in self.primitives:
|
|
|
- print("Function %s" % self.compiled[inst])
|
|
|
- print(" parameters: " + str(parameters))
|
|
|
prim = self.compiled[inst](**parameters)
|
|
|
inp = None
|
|
|
while 1:
|
|
@@ -439,8 +436,6 @@ class ModelverseKernel(object):
|
|
|
compiled_function = getattr(compiled_functions, var_name, None)
|
|
|
if compiled_function is not None:
|
|
|
# We have a compiled function ready!
|
|
|
- print("Using compiled version of '%s'" % var_name)
|
|
|
-
|
|
|
# Now we have to bind the ID to the compiled functions
|
|
|
# For this, we read out the body of the resolved data
|
|
|
compiler_val = yield [("RD", [variable, "value"])]
|