Commit e11ce251 authored by Paul's avatar Paul
Browse files

Remove prints

parent 735e102a
......@@ -39,7 +39,6 @@ struct instruction
for(auto&& ins : output)
{
assert(ins->op.name().front() != '@');
std::cout << ins->op.name() << std::endl;
ins->replace(compute_shape(ins->op, ins->arguments));
}
}
......@@ -124,7 +123,6 @@ inline void backreference(instruction_ref ref)
// TODO: Use const ref for vector
inline shape compute_shape(operation op, std::vector<instruction_ref> args)
{
std::cout << "compute_shape: " << op.name() << std::endl;
std::vector<shape> shapes(args.size());
std::transform(
args.begin(), args.end(), shapes.begin(), [](instruction_ref i) { return i->result; });
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment