Skip to content

Commit

Permalink
spurious dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Jun 21, 2023
1 parent 2821cec commit da5aa02
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions nnef/src/ops/core/einsum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,9 @@ pub fn ser_einsum(ast: &mut IntoAst, node: &TypedNode) -> TractResult<Option<Arc
let einsum = node.op_as::<EinSum>().unwrap();
let inputs: Vec<_> = node.inputs.iter().map(|i| (*ast.mapping[i]).clone()).collect();
if inputs.len() == 2 {
dbg!(inputs.len());
if let Some((transpose_a, transpose_b, transpose_c)) =
einsum.as_prefixed_matmul(&ast.model, node)?
{
dbg!(transpose_a, transpose_b, transpose_c);
if transpose_c {
return Ok(Some(invocation(
"matmul",
Expand Down

0 comments on commit da5aa02

Please sign in to comment.