Skip to content
Snippets Groups Projects
Commit 9696054c authored by Jérôme Botoko Ekila's avatar Jérôme Botoko Ekila
Browse files

fix: remove logging of the primitives

parent ca448527
No related branches found
No related tags found
No related merge requests found
......@@ -270,9 +270,6 @@ class ProgramExecutor(nn.Module):
current_node = queue.pop()
instruction: dict = program[current_node["idx"]]
stack: MemoryStack = current_node["stack"]
logging.info(
f" -> instruction {current_node['idx']} - {instruction['function']}"
)
# inputs = [stack.pop() for _ in range(len(instruction["inputs"]))]
inputs = stack.direct_pop(instruction["inputs"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment